diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index b55379e8eb1f..2a6fa16b4f08 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,4 @@ # To make sure Network PRs go to the right branch, e.g. network-april /src/Network/ @number213 + +/src/Compute/ @bilaakpan-ms @sandido @dkulkarni-ms @haagha @madewithsmiles @MS-syh2qs @grizzlytheodore diff --git a/setup/InstallerChecks.CA.dll b/setup/InstallerChecks.CA.dll index 9b54f9cbe29a..100ba64a7407 100644 Binary files a/setup/InstallerChecks.CA.dll and b/setup/InstallerChecks.CA.dll differ diff --git a/setup/InstallerChecks/InstallerChecks/InstallerChecks.config b/setup/InstallerChecks/InstallerChecks/CustomAction.config similarity index 100% rename from setup/InstallerChecks/InstallerChecks/InstallerChecks.config rename to setup/InstallerChecks/InstallerChecks/CustomAction.config diff --git a/setup/InstallerChecks/InstallerChecks/InstallerChecks.csproj b/setup/InstallerChecks/InstallerChecks/InstallerChecks.csproj index 278f52e0e85c..6609174b6915 100644 --- a/setup/InstallerChecks/InstallerChecks/InstallerChecks.csproj +++ b/setup/InstallerChecks/InstallerChecks/InstallerChecks.csproj @@ -50,7 +50,9 @@ True Resources.resx - + + Always + diff --git a/src/Accounts/Accounts.Test/AzureRMProfileTests.cs b/src/Accounts/Accounts.Test/AzureRMProfileTests.cs index 35f8262da4ff..210529a2223b 100644 --- a/src/Accounts/Accounts.Test/AzureRMProfileTests.cs +++ b/src/Accounts/Accounts.Test/AzureRMProfileTests.cs @@ -1081,7 +1081,7 @@ public void CanRenewTokenLogin() Assert.Equal(keyVaultToken2, account.GetProperty(AzureAccount.Property.KeyVaultAccessToken)); var factory = new ClientFactory(); var rmClient = factory.CreateArmClient(profile.DefaultContext, AzureEnvironment.Endpoint.ResourceManager); - var rmCred = rmClient.Credentials as TokenCredentials; + var rmCred = rmClient.Credentials as RenewingTokenCredential; Assert.NotNull(rmCred); var message = new HttpRequestMessage(HttpMethod.Get, rmClient.BaseUri.ToString()); rmCred.ProcessHttpRequestAsync(message, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult(); @@ -1089,7 +1089,7 @@ public void CanRenewTokenLogin() Assert.NotNull(message.Headers.Authorization.Parameter); Assert.Contains(accessToken2, message.Headers.Authorization.Parameter); var graphClient = factory.CreateArmClient(profile.DefaultContext, AzureEnvironment.Endpoint.Graph); - var graphCred = graphClient.Credentials as TokenCredentials; + var graphCred = graphClient.Credentials as RenewingTokenCredential; Assert.NotNull(graphCred); var graphMessage = new HttpRequestMessage(HttpMethod.Get, rmClient.BaseUri.ToString()); graphCred.ProcessHttpRequestAsync(graphMessage, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult(); diff --git a/src/Accounts/Authentication/Authentication/ExternalAccessToken.cs b/src/Accounts/Authentication/Authentication/ExternalAccessToken.cs new file mode 100644 index 000000000000..11638d805392 --- /dev/null +++ b/src/Accounts/Authentication/Authentication/ExternalAccessToken.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.Common.Authentication.Authentication +{ + public class ExternalAccessToken : IAccessToken + { + public string AccessToken + { + get; set; + } + + public string LoginType + { + get; set; + } + + public string TenantId + { + get; set; + } + + public string UserId + { + get; set; + } + + private readonly Func _refresh; + + public ExternalAccessToken(string token, Func refresh = null) + { + this.AccessToken = token; + this._refresh = refresh; + } + + public void AuthorizeRequest(Action authTokenSetter) + { + AccessToken = (_refresh == null) ? AccessToken : _refresh(); + authTokenSetter("Bearer", AccessToken); + } + } +} diff --git a/src/Accounts/Authentication/Factories/AuthenticationFactory.cs b/src/Accounts/Authentication/Factories/AuthenticationFactory.cs index 3bc2ce7e7568..96472f66b63e 100644 --- a/src/Accounts/Authentication/Factories/AuthenticationFactory.cs +++ b/src/Accounts/Authentication/Factories/AuthenticationFactory.cs @@ -21,6 +21,8 @@ using System.Security; using Microsoft.Azure.Commands.Common.Authentication.Properties; using System.Threading.Tasks; +using Microsoft.Azure.Commands.Common.Authentication.Authentication; +using System.Management.Automation; namespace Microsoft.Azure.Commands.Common.Authentication.Factories { @@ -302,7 +304,7 @@ public ServiceClientCredentials GetServiceClientCredentials(IAzureContext contex case AzureAccount.AccountType.Certificate: throw new NotSupportedException(AzureAccount.AccountType.Certificate.ToString()); case AzureAccount.AccountType.AccessToken: - return new TokenCredentials(GetEndpointToken(context.Account, targetEndpoint)); + return new RenewingTokenCredential(new ExternalAccessToken (GetEndpointToken(context.Account, targetEndpoint), () => GetEndpointToken(context.Account, targetEndpoint))); } diff --git a/src/Aks/Aks/Commands/NewKubeBase.cs b/src/Aks/Aks/Commands/NewKubeBase.cs index 044ff23fcc12..c559f6f25d9f 100644 --- a/src/Aks/Aks/Commands/NewKubeBase.cs +++ b/src/Aks/Aks/Commands/NewKubeBase.cs @@ -21,12 +21,14 @@ using Microsoft.Azure.Commands.ResourceManager.Common.Tags; using Microsoft.Azure.Management.ContainerService.Models; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Aks { public abstract class NewKubeBase : CreateOrUpdateKubeBase { + [CmdletParameterBreakingChange("NodeVmSetType", ChangeDescription = "Default value will be changed from AvailabilitySet to VirtualMachineScaleSets.")] [Parameter(Mandatory = false, HelpMessage = "Represents types of an node pool. Possible values include: 'VirtualMachineScaleSets', 'AvailabilitySet'")] [PSArgumentCompleter("AvailabilitySet", "VirtualMachineScaleSets")] public string NodeVmSetType { get; set; } @@ -37,6 +39,7 @@ public abstract class NewKubeBase : CreateOrUpdateKubeBase [Parameter(Mandatory = false, HelpMessage = "Maximum number of pods that can run on node.")] public int NodeMaxPodCount { get; set; } + [CmdletParameterBreakingChange("NodeOsType", ChangeDescription = "NodeOsType will be removed as it supports only one value Linux.")] [Parameter(Mandatory = false, HelpMessage = "OsType to be used to specify os type, currently support 'Linux' only here.")] [PSArgumentCompleter("Linux")] public string NodeOsType { get; set; } @@ -92,6 +95,7 @@ public abstract class NewKubeBase : CreateOrUpdateKubeBase + "At least one lower case, one upper case, one special character !@#$%^&*(), the minimum lenth is 12.")] public SecureString WindowsProfileAdminUserPassword { get; set; } + [CmdletParameterBreakingChange("NetworkPlugin", ChangeDescription = "Default value will be changed from None to azure.")] [Parameter(Mandatory = false, HelpMessage = "Network plugin used for building Kubernetes network.")] [PSArgumentCompleter("azure", "kubenet")] public string NetworkPlugin { get; set; } diff --git a/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJob.md b/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJob.md index cda091e42184..6423d760323d 100644 --- a/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJob.md +++ b/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJob.md @@ -45,14 +45,23 @@ for the source control VSTSNative. ```powershell PS C:\> Get-AzAutomationSourceControlSyncJob -ResourceGroupName "rg1" ` -AutomationAccountName "devAccount" ` - -Name "VSTSNative" - -Id "08d6d266-27b6-463c-beea-bc48a67ace15" + -Name "VSTSNative" ` + -JobId "08d6d266-27b6-463c-beea-bc48a67ace15" Status SyncType Exception ------ -------- --------- Failed FullSync There were errors while syncing the user runbooks. Please see error streams for more information. (T... ``` +### Example 3 + +Gets Azure Automation source control sync jobs. (autogenerated) + + +```powershell +Get-AzAutomationSourceControlSyncJob -AutomationAccountName 'devAccount' -JobId 00000000-0000-0000-0000-00000000000000000 -ResourceGroupName 'rg1' -SourceControlName 'VSTSNative' +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/Import-AzAutomationDscConfiguration.md b/src/Automation/Automation/help/Import-AzAutomationDscConfiguration.md index cf99d5580039..1dff7e7247f8 100644 --- a/src/Automation/Automation/help/Import-AzAutomationDscConfiguration.md +++ b/src/Automation/Automation/help/Import-AzAutomationDscConfiguration.md @@ -26,14 +26,23 @@ Specify the path of an APS script that contains a single DSC configuration. ## EXAMPLES ### Example 1: Import a DSC configuration into Automation -``` -PS C:\>Import-AzAutomationDscConfiguration -AutomationAccountName "Contoso17"-ResourceGroupName "ResourceGroup01" -SourcePath "C:\DSC\client.ps1" -Force +```powershell +PS C:\>Import-AzAutomationDscConfiguration -AutomationAccountName "Contoso17" -ResourceGroupName "ResourceGroup01" -SourcePath "C:\DSC\client.ps1" -Force ``` This command imports the DSC configuration in the file named client.ps1 into the Automation account named Contoso17. The command specifies the *Force* parameter. If there is an existing DSC configuration, this command replaces it. +### Example 2 + +Imports a DSC configuration into Automation. (autogenerated) + + +```powershell +Import-AzAutomationDscConfiguration -AutomationAccountName 'Contoso17' -Published -ResourceGroupName 'ResourceGroup01' -SourcePath 'C:\DSC\client.ps1' +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/Import-AzAutomationRunbook.md b/src/Automation/Automation/help/Import-AzAutomationRunbook.md index aad0560118b5..c9aad6bdfeaf 100644 --- a/src/Automation/Automation/help/Import-AzAutomationRunbook.md +++ b/src/Automation/Automation/help/Import-AzAutomationRunbook.md @@ -29,7 +29,7 @@ For wps_2 Workflow runbooks, the script must contain a single wps_2 Workflow def ## EXAMPLES ### Example 1: Import a runbook from a file -``` +```powershell PS C:\> $Tags = @{"tag01"="value01"; "tag02"="value02"} PS C:\> Import-AzAutomationRunbook -Path .\GraphicalRunbook06.graphrunbook -Tags $Tags -ResourceGroup "ResourceGroup01" -AutomationAccountName "AutomationAccount01" -Type GraphicalPowershell ``` @@ -38,6 +38,15 @@ The first command assigns two key/value pairs to the $Tags variable. The second command imports a graphical runbook called GraphicalRunbook06 into the Automation account named AutomationAccount01. The command also assigns the tags stored in $Tags. +### Example 2 + +Imports an Automation runbook. (autogenerated) + + +```powershell +Import-AzAutomationRunbook -AutomationAccountName 'AutomationAccount01' -Name 'Configuration01' -Path .\GraphicalRunbook06.graphrunbook -Published -ResourceGroupName 'ResourceGroup01' -Type PowerShell +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/New-AzAutomationAccount.md b/src/Automation/Automation/help/New-AzAutomationAccount.md index b6079928e7ee..5ec2346c0217 100644 --- a/src/Automation/Automation/help/New-AzAutomationAccount.md +++ b/src/Automation/Automation/help/New-AzAutomationAccount.md @@ -27,12 +27,21 @@ of other Automation accounts. Automation resources include runbooks, Desired Sta ## EXAMPLES ### Example 1: Create an automation account -``` +```powershell PS C:\> New-AzAutomationAccount -Name "ContosoAutomationAccount" -Location "East US" -ResourceGroupName "ResourceGroup01" ``` This command creates a new automation account named ContosoAutomationAccount in the East US region. +### Example 2 + +Creates an Automation account. (autogenerated) + + +```powershell +New-AzAutomationAccount -Location 'East US' -Name 'ContosoAutomationAccount' -ResourceGroupName 'ResourceGroup01' -Tags +``` + ## PARAMETERS ### -DefaultProfile diff --git a/src/Automation/Automation/help/New-AzAutomationRunbook.md b/src/Automation/Automation/help/New-AzAutomationRunbook.md index 1752f4b2d0a6..fa8ec813e6fb 100644 --- a/src/Automation/Automation/help/New-AzAutomationRunbook.md +++ b/src/Automation/Automation/help/New-AzAutomationRunbook.md @@ -26,12 +26,21 @@ Specify a name for the runbook. ## EXAMPLES ### Example 1: Create a runbook -``` +```powershell PS C:\>New-AzAutomationRunbook -AutomationAccountName "Contoso17" -Name "Runbook02" -ResourceGroupName "ResourceGroup01" ``` This command creates a runbook named Runbook02 in the Azure Automation account named Contoso17. +### Example 2 + +Creates an Automation runbook. (autogenerated) + + +```powershell +New-AzAutomationRunbook -AutomationAccountName 'Contoso17' -Name 'Runbook02' -ResourceGroupName 'ResourceGroup01' -Type PowerShell +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md b/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md index 9505d4f29bcf..2bde649dc8a5 100644 --- a/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md +++ b/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md @@ -33,12 +33,21 @@ The runbook starts based on the schedule you specify using the *ScheduleName* pa ## EXAMPLES ### Example 1: Associate a runbook with a schedule -``` +```powershell PS C:\>Register-AzAutomationScheduledRunbook -AutomationAccountName "Contoso17" -Name "Runbk01" -ScheduleName "Sched01" -ResourceGroupName "ResourceGroup01" ``` This command associates the runbook named Runbk01 with the schedule named Sched01 in the Azure Automation account named Contoso17. +### Example 2 + +Associates a runbook to a schedule. (autogenerated) + + +```powershell +Register-AzAutomationScheduledRunbook -AutomationAccountName 'Contoso17' -Parameters -ResourceGroupName 'ResourceGroup01' -RunbookName 'Runbk01' -ScheduleName 'Sched01' +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/Remove-AzAutomationDscConfiguration.md b/src/Automation/Automation/help/Remove-AzAutomationDscConfiguration.md index 94f540e42ecc..07c606567f57 100644 --- a/src/Automation/Automation/help/Remove-AzAutomationDscConfiguration.md +++ b/src/Automation/Automation/help/Remove-AzAutomationDscConfiguration.md @@ -24,6 +24,15 @@ The **Remove-AzAutomationDscConfiguration** cmdlet removes APS Desired State Con ## EXAMPLES +### Example 1 + +Removes DSC configurations from Automation. (autogenerated) + + +```powershell +Remove-AzAutomationDscConfiguration -AutomationAccountName 'AutomationAccount01' -Name 'Configuration01' -ResourceGroupName myresourcegroup +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/Remove-AzAutomationDscNodeConfiguration.md b/src/Automation/Automation/help/Remove-AzAutomationDscNodeConfiguration.md index 53bb4d0da3fa..a1ec31c35450 100644 --- a/src/Automation/Automation/help/Remove-AzAutomationDscNodeConfiguration.md +++ b/src/Automation/Automation/help/Remove-AzAutomationDscNodeConfiguration.md @@ -25,6 +25,15 @@ Automation stores DSC node configuration as a Managed Object Format (MOF) config ## EXAMPLES +### Example 1 + +Removes metadata from DSC node configurations in Automation. (autogenerated) + + +```powershell +Remove-AzAutomationDscNodeConfiguration -AutomationAccountName 'AutomationAccount01' -IgnoreNodeMappings -Name 'Configuration01' -ResourceGroupName myresourcegroup +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/Set-AzAutomationWebhook.md b/src/Automation/Automation/help/Set-AzAutomationWebhook.md index 0ae3dbf06689..8cd94ea66620 100644 --- a/src/Automation/Automation/help/Set-AzAutomationWebhook.md +++ b/src/Automation/Automation/help/Set-AzAutomationWebhook.md @@ -25,12 +25,21 @@ The **Set-AzAutomationWebhook** cmdlet modifies a webhook for an Azure Automatio ## EXAMPLES ### Example 1: Disable a webhook -``` +```powershell PS C:\>Set-AzAutomationWebhook -Name "Webhook01" -ResourceGroup "ResourceGroup01" -AutomationAccountName "AutomationAccount01" -IsEnabled $False ``` This command disables a webhook named Webhook01 in the Automation account named AutomationAccount01. +### Example 2 + +Modifies a webhook for an Automation runbook. (autogenerated) + + +```powershell +Set-AzAutomationWebhook -AutomationAccountName 'AutomationAccount01' -IsEnabled $false -Name 'Webhook01' -Parameters -ResourceGroupName 'ResourceGroup01' +``` + ## PARAMETERS ### -AutomationAccountName diff --git a/src/Automation/Automation/help/Update-AzAutomationSourceControl.md b/src/Automation/Automation/help/Update-AzAutomationSourceControl.md index 2ad8f69ab730..11c743747cc1 100644 --- a/src/Automation/Automation/help/Update-AzAutomationSourceControl.md +++ b/src/Automation/Automation/help/Update-AzAutomationSourceControl.md @@ -39,6 +39,15 @@ Name SourceType Branch FolderPath AutoSync PublishRunbook RepoUrl VSTSNative VsoTfvc /MyRunbooks False False https://contoso.visualstudio.com/_git/Fin... ``` +### Example 2 + +Updates an Azure Automation source control. (autogenerated) + + +```powershell +Update-AzAutomationSourceControl -AccessToken -AutomationAccountName 'devAccount' -Name 'VSTSNative' -ResourceGroupName 'rg1' +``` + ## PARAMETERS ### -AccessToken diff --git a/src/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index 4832ab456737..8ebd3d1f9a91 100644 --- a/src/CognitiveServices/CognitiveServices/ChangeLog.md +++ b/src/CognitiveServices/CognitiveServices/ChangeLog.md @@ -18,7 +18,6 @@ - Additional information about change #1 --> ## Upcoming Release -* Show additional legal terms for certain APIs. ## Version 1.5.1 * Used `Deny` specifically as NetworkRules default action. diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj b/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj index 8777c489cff6..a3795812e78e 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj +++ b/src/CognitiveServices/CognitiveServices/CognitiveServices.csproj @@ -14,10 +14,4 @@ - - - True - - - \ No newline at end of file diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs index 452fc7c975ae..93d0f805d0e2 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/NewAzureCognitiveServicesAccount.cs @@ -245,24 +245,6 @@ public override void ExecuteCmdlet() } } } - - if (Type.Equals("Face", StringComparison.InvariantCultureIgnoreCase)) - { - if (Force.IsPresent) - { - WriteWarning(Resources.NewAccount_LegalTerm_NotPolice); - } - else - { - bool yesToAll = false, noToAll = false; - if (!ShouldContinue(Resources.NewAccount_LegalTerm_NotPolice, "Notice", true, ref yesToAll, ref noToAll)) - { - return; - } - } - } - - try { CognitiveServicesAccount createAccountResponse = CognitiveServicesClient.Accounts.Create( diff --git a/src/CognitiveServices/CognitiveServices/Properties/Resources.Designer.cs b/src/CognitiveServices/CognitiveServices/Properties/Resources.Designer.cs index 9cd6a1a18cd5..96221fd3282d 100644 --- a/src/CognitiveServices/CognitiveServices/Properties/Resources.Designer.cs +++ b/src/CognitiveServices/CognitiveServices/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Management.CognitiveServices.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -61,16 +61,7 @@ internal Resources() { } /// - /// Looks up a localized string similar to I certify that use of this service is not by or for a police department in the United States.. - /// - internal static string NewAccount_LegalTerm_NotPolice { - get { - return ResourceManager.GetString("NewAccount_LegalTerm_NotPolice", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft will use data you send to Bing Search Services to improve Microsoft products and services. Where you send personal data to these Cognitive Services, you are responsible for obtaining sufficient consent from the data subjects. The General Privacy and Security Terms in the Online Services Terms do not apply to these Cognitive Services. Please refer to the Microsoft Cognitive Services section in the Online Services Terms (https://www.microsoft.com/en-us/Licensing/product-licensing/products.aspx) for [rest of string was truncated]";. + /// Looks up a localized string similar to Microsoft will use data you send to Bing Search Services or the Translator Speech API to improve Microsoft products and services. Where you send personal data to these Cognitive Services, you are responsible for obtaining sufficient consent from the data subjects. The General Privacy and Security Terms in the Online Services Terms do not apply to these Cognitive Services. Please refer to the Microsoft Cognitive Services section in the Online Services Terms (https://www.microsoft.com/en-us/Licensing/product- [rest of string was truncated]";. /// internal static string NewAccount_Notice { get { diff --git a/src/CognitiveServices/CognitiveServices/Properties/Resources.resx b/src/CognitiveServices/CognitiveServices/Properties/Resources.resx index 72c8cadbe9fa..7fcd0d82e10d 100644 --- a/src/CognitiveServices/CognitiveServices/Properties/Resources.resx +++ b/src/CognitiveServices/CognitiveServices/Properties/Resources.resx @@ -120,9 +120,6 @@ Regenerating Key {0} for account {1}. - - I certify that use of this service is not by or for a police department in the United States. - Microsoft will use data you send to Bing Search Services to improve Microsoft products and services. Where you send personal data to these Cognitive Services, you are responsible for obtaining sufficient consent from the data subjects. The General Privacy and Security Terms in the Online Services Terms do not apply to these Cognitive Services. Please refer to the Microsoft Cognitive Services section in the Online Services Terms (https://www.microsoft.com/en-us/Licensing/product-licensing/products.aspx) for details. Microsoft offers policy controls that may be used to disable new Cognitive Services deployments (https://docs.microsoft.com/en-us/azure/cognitive-services/cognitive-services-apis-create-account). diff --git a/src/Compute/Compute.Test/ScenarioTests/ComputeTestCommon.ps1 b/src/Compute/Compute.Test/ScenarioTests/ComputeTestCommon.ps1 index c890dc3ebc8b..43ba26404d98 100644 --- a/src/Compute/Compute.Test/ScenarioTests/ComputeTestCommon.ps1 +++ b/src/Compute/Compute.Test/ScenarioTests/ComputeTestCommon.ps1 @@ -670,7 +670,9 @@ function Get-ResourceProviderLocation function Get-ComputeVMLocation { - Get-Location "Microsoft.Compute" "virtualMachines" "East US"; + $result = Get-Location "Microsoft.Compute" "virtualMachines" "East US"; + $result = $result.Replace(' ', ''); + return $result } function Get-ComputeAvailabilitySetLocation @@ -777,3 +779,20 @@ function Get-VMImageVersion { -Offer $offer ` -Skus $sku | Sort-Object -Descending Version | select -First 1).Version } + + +<# +.SYNOPSIS +Gets a sku that is available for the location, subscription, and resourceType +#> +function Get-AvailableSku +{ + param([string] $location, [string] $resourceType) + + $res = get-azcomputeresourcesku $location | where-object ResourceType -match $resourceType + $res = $res.where({$_.restrictions.count -eq 0}) + if ($resourceType -match "virtualmachine"){ + $res = $res.where({$_.Name -notmatch "Standard_B"}) + } + return $res[0].Name +} diff --git a/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.cs b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.cs new file mode 100644 index 000000000000..287e704eacd1 --- /dev/null +++ b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.cs @@ -0,0 +1,21 @@ +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + + +namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests +{ + public class VirtualMachinePatchTests : ComputeTestRunner + { + public VirtualMachinePatchTests(Xunit.Abstractions.ITestOutputHelper output) + : base(output) + { + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestInvokeAzVmPatchAssessment() + { + TestRunner.RunTestScript("Test-InvokeAzVmPatchAssessment"); + } + } +} diff --git a/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.ps1 new file mode 100644 index 000000000000..763c8f5aef0f --- /dev/null +++ b/src/Compute/Compute.Test/ScenarioTests/VirtualMachinePatchTests.ps1 @@ -0,0 +1,76 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Invoke-AzVmPatchAssessment cmdlet +#> +function Test-InvokeAzVmPatchAssessment +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = Get-ComputeVMLocation; + $loc = $loc.Replace(' ', ''); + + New-AzResourceGroup -Name $rgname -Location $loc -Force; + + # VM Profile & Hardware + $vmsize = Get-AvailableSku $loc "virtualMachine" + $vmname = 'vm' + $rgname; + + $p = New-AzVMConfig -VMName $vmname -VMSize $vmsize -Priority 'Low' -MaxPrice 0.1538; + + # NRP + $subnet = New-AzVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -Subnet $subnet; + $vnet = Get-AzVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $nic = New-AzNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId + $nic = Get-AzNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzVMNetworkInterface -VM $p -Id $nicId; + + # OS & Image + $user = "Foo2"; + $password = $PLACEHOLDER; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + + $p = Set-AzVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; + + $imgRef = Get-DefaultCRPImage -loc $loc; + $p = ($imgRef | Set-AzVMSourceImage -VM $p); + + # Create a Virtual Machine + New-AzVM -ResourceGroupName $rgname -Location $loc -VM $p; + + $patchResult = invoke-azvmpatchAssessment -resourcegroupname $rgname -vmname $vmname + + Assert-NotNull $patchResult; + Assert-AreEqual "Succeeded" $patchResult.Status; + Assert-NotNull $patchResult.StartDateTime; + + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} \ No newline at end of file diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachinePatchTests/TestInvokeAzVmPatchAssessment.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachinePatchTests/TestInvokeAzVmPatchAssessment.json new file mode 100644 index 000000000000..161d3c6f7bd0 --- /dev/null +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachinePatchTests/TestInvokeAzVmPatchAssessment.json @@ -0,0 +1,5095 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "600a3637-579f-4774-9a36-0b16d3e6a243" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3f0e2684-baec-4694-bd49-f966fbc6112f" + ], + "x-ms-correlation-request-id": [ + "3f0e2684-baec-4694-bd49-f966fbc6112f" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190217Z:3f0e2684-baec-4694-bd49-f966fbc6112f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "34246" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps3553?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a69c3bd8-9162-4bc5-80fc-ff46d261fbb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a149634f-9fc9-4cbb-890e-3d51b4f27f56" + ], + "x-ms-correlation-request-id": [ + "a149634f-9fc9-4cbb-890e-3d51b4f27f56" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190218Z:a149634f-9fc9-4cbb-890e-3d51b4f27f56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:18 GMT" + ], + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553\",\r\n \"name\": \"crptestps3553\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/skus?api-version=2019-04-01&$filter=location%20eq%20%27EastUS%27", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTktMDQtMDEmJGZpbHRlcj1sb2NhdGlvbiUyMGVxJTIwJTI3RWFzdFVTJTI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c89cd688-746c-4e48-bf3e-4d44f7c89197" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e59ed947-8311-4191-a14e-7f9ff6d2546e" + ], + "x-ms-correlation-request-id": [ + "e59ed947-8311-4191-a14e-7f9ff6d2546e" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190219Z:e59ed947-8311-4191-a14e-7f9ff6d2546e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "504768" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S15\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S20\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S30\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S40\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S50\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S60\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"1300\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S70\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"1300\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S80\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32767\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"25\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"6084000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"255\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"240\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"240\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"5868000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"211\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"5400000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"123\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P15\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"1100\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"1100\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"125\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"125\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"4320000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"79\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P20\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2300\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"2300\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"150\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"150\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxBurstIops\",\r\n \"value\": \"3500\"\r\n },\r\n {\r\n \"name\": \"MaxBurstBandwidthMBps\",\r\n \"value\": \"170\"\r\n },\r\n {\r\n \"name\": \"MaxBurstDurationInMin\",\r\n \"value\": \"30\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInIO\",\r\n \"value\": \"2160000\"\r\n },\r\n {\r\n \"name\": \"BurstCreditBucketSizeInGiB\",\r\n \"value\": \"35\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P30\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P40\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P50\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"7500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"250\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P60\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"10\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P70\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"18000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"18000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"10\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P80\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32767\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"900\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"900\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"10\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E15\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E30\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E40\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"1024\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E50\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"2048\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E60\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E70\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"600\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"600\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E80\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"32767\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"MaxIOps\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"MinIOps\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBps\",\r\n \"value\": \"750\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"UltraSSD_LRS\",\r\n \"tier\": \"Ultra\",\r\n \"size\": \"U\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxSizeGiB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"MinSizeGiB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOpsReadWrite\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"MinIOpsReadWrite\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBpsReadWrite\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBpsReadWrite\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxValueOfMaxShares\",\r\n \"value\": \"5\"\r\n },\r\n {\r\n \"name\": \"MinIOSizeKiBps\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxIOSizeKiBps\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MinIopsReadOnly\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"MaxIopsReadOnly\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"MinBandwidthMBpsReadOnly\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxBandwidthMBpsReadOnly\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxIopsPerGiBReadWrite\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MaxIopsPerGiBReadOnly\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"MinIopsPerGiBReadWrite\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MinIopsPerGiBReadOnly\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"BillingPartitionSizes\",\r\n \"value\": \"4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552,24576,25600,26624,27648,28672,29696,30720,31744,32768,33792,34816,35840,36864,37888,38912,39936,40960,41984,43008,44032,45056,46080,47104,48128,49152,50176,51200,52224,53248,54272,55296,56320,57344,58368,59392,60416,61440,62464,63488,64512,65536\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DSv3-Type2\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"76\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"ESv3-Type2\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"76\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DSv3-Type1\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"ESv3-Type1\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MSv2-Type1\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MSmv2-Type1\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"NVSv3-Type1\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"FSv2-Type2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"LSv2-Type1\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"DASv4-Type1\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"EASv4-Type1\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MSm-Type1\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"MS-Type1\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"name\": \"NVASv4-Type1\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ls\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ls\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"0.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"640\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"2400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"23592960\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"23592960\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"1920\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"23592960\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"1600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"15728640\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"15728640\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"1280\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"15728640\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"36700160\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"36700160\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"2880\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"36700160\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B12ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B12ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"98304\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"6\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B16ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8640\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B20ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B20ms\",\r\n \"family\": \"standardBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"163840\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"4320\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"52428800\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"46170898432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"184683593728\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"369367187456\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"738734374912\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11-1_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS11_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12-1_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS12_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12-2_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS12_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS13_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS13_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS14_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_DS14_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"family\": \"standardDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"286720\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"140\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"671088640\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"671088640\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"773094113280\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1006632960\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"184683593728\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"369367187456\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"738734374912\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"family\": \"standardDSv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"12884901888\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"25769803776\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"51539607552\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"103079215104\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"family\": \"standardFSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"206158430208\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"family\": \"standardDv2PromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"family\": \"standardFFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"10240\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"20971520\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"10485760\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"20971520\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"20971520\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"41943040\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"81920\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"167772160\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"family\": \"standardAv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"81920\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"167772160\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"83886080\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"family\": \"standardDv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"family\": \"standardDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"30000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"491782144\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"245366784\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"family\": \"standardEv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4-2s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-2s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-4s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-4s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-8s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"327680\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"786432\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v3\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"family\": \"standardESv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"0.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"71680\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"138240\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"291840\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"138240\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"619520\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"291840\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"family\": \"standardA0_A7Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"619520\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"20480\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"0.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"61440\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"122880\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"family\": \"basicAFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"245760\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"family\": \"standardDv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"140\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"210\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"60000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"982515712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"490733568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64i_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64i_v3\",\r\n \"family\": \"standardEIv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64is_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64is_v3\",\r\n \"family\": \"standardEISv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M208ms_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M208ms_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"5700\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M208s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M208s_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2850\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416-208s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416-208s_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"5700\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M416s_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"15118000000000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2000000000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416s_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"5700\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416-208ms_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416-208ms_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"11400\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"208\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M416ms_v2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1600000000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"15118000000000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2000000000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M416ms_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M416ms_v2\",\r\n \"family\": \"standardMSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8388608\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"416\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"11400\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"family\": \"standardHFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr_Promo\",\r\n \"family\": \"standardHPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"290\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"24117248\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"6000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"48234496\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"12000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"97517568\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"24000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"196083712\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"family\": \"standardDFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"48000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"393216000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"family\": \"standardNVFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"family\": \"standardNVFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"family\": \"standardNVFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6_Promo\",\r\n \"family\": \"standardNVPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12_Promo\",\r\n \"family\": \"standardNVPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24_Promo\",\r\n \"family\": \"standardNVPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6s_v2\",\r\n \"family\": \"standardNVSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12s_v2\",\r\n \"family\": \"standardNVSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24s_v2\",\r\n \"family\": \"standardNVSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12s_v3\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24s_v3\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV48s_v3\",\r\n \"family\": \"standardNVSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_HB120rs_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"HB120rs_v2\",\r\n \"family\": \"standardHBrsv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"960000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"468.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"120\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6s_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12s_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24rs_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24rs_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24s_v2\",\r\n \"family\": \"standardNCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"32505856\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"32505856\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"34359738368\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"49283072\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"66060288\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"66060288\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"68719476736\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"49283072\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"133169152\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"133169152\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"137438953472\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"199229440\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"267386880\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"267386880\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"274877906944\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"398458880\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F32s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F32s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"549755813888\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"786432000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F48s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F48s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"824633720832\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1153433600\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F64s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F64s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1099511627776\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1153433600\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F72s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F72s_v2\",\r\n \"family\": \"standardFSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"589824\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"144\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"144000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1632087572480\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1153433600\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"family\": \"standardNCFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"389120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"696320\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r_Promo\",\r\n \"family\": \"standardNCPromoFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1474560\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1830912\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"3661824\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"7323648\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L48s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L48s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"10985472\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L64s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L64s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14647296\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L80s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L80s_v2\",\r\n \"family\": \"standardLSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"18309120\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"640\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"32212254720\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC8_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"180355072\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC1s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC1s_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"22020096\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC2s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC2s_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"45088768\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC4s_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC4s_v2\",\r\n \"family\": \"standardDCSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"90177536\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"768000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"190000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1209008128\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"603979776\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4-2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4-2s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E4s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-2s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-4s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-4s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-8s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4-2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4-2ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E4ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-2ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8-4ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E8ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-4ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16-8ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E16ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"768000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"190000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1209008128\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"603979776\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E32ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"483393536\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64d_v4\",\r\n \"family\": \"standardDDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v4\",\r\n \"family\": \"standardDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"19000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"59768832\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"153600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"38500\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"242221056\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"307200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"77000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"120586240\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"614400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"154000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"484442112\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"308000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1935671296\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"967835648\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64ds_v4\",\r\n \"family\": \"standardDDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v4\",\r\n \"family\": \"standardDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NP10s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NP10s\",\r\n \"family\": \"standardNPSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"753664\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"10\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"168\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"10\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NP20s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NP20s\",\r\n \"family\": \"standardNPSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1509376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"336\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NP40s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NP40s\",\r\n \"family\": \"standardNPSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"3018752\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"46170898432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"184683593728\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"369367187456\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"77309411328\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"154618822656\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"309237645312\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"family\": \"standardDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"618475290624\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D96a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D96a_v4\",\r\n \"family\": \"standardDAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D48as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D96as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D96as_v4\",\r\n \"family\": \"standardDASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"786432\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"192000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E96a_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E96a_v4\",\r\n \"family\": \"standardEAv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"53687091200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"107374182400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"16000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"134217728\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"214748364800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"12800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"201326592\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"268435456\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"25600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"402653184\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E20as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"327680\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"335544320\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"429496729600\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"32000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"503316480\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"524288\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"64000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"536870912\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"858993459200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"786432\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"96000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"805306368\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"884736\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"128000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E96as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E96as_v4\",\r\n \"family\": \"standardEASv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"192000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1073741824\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_HC44rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"HC44rs\",\r\n \"family\": \"standardHCSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"716800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"44\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"327.83\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND6s\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND12s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND12s\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24rs\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24s\",\r\n \"family\": \"standardNDSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND40rs_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND40rs_v2\",\r\n \"family\": \"standardNDSv2Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2969600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC2s\",\r\n \"family\": \"standardDCSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"33554432\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"46170898432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"3200\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"50331648\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DC4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DC4s\",\r\n \"family\": \"standardDCSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"8000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"67108864\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"92341796864\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"6400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"100663296\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1318554959872\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64m\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"8192000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"2637109919744\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128m\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"16384000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"250000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"2637109919744\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M8-2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M8-2ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"256000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"218.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M8ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"851477266432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M8-4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M8-4ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"256000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"218.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M8ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"851477266432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M8ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"256000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"218.75\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"104857600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"851477266432\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"131072000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M16-4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M16-4ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"437.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M16ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1704028274688\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"262144000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M16-8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M16-8ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"437.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M16ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1704028274688\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"262144000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M16ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"512000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"437.5\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"209715200\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1704028274688\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"262144000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32-8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32-8ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"875\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M32ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32-16ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"875\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M32ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32ls\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32ls\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"875\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M32ts\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M32ts\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"419430400\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"3408056549376\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"524288000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M64ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M64ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ls\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ls\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"512\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1750\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"838860800\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"6816113098752\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"40000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1048576000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128-32ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M128ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128-64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128-64ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_M128ms\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128ms\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"3800\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"family\": \"standardMSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"4096000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MaxWriteAcceleratorDisksAllowed\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"160000\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedReadBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedWriteBytesPerSecond\",\r\n \"value\": \"1677721600\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"13632226197504\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"2097152000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6s_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12s_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"688128\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24rs_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24s_v3\",\r\n \"family\": \"standardNCSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1376256\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_PB6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"PB6s\",\r\n \"family\": \"standardPBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"344064\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_HB60rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"HB60rs\",\r\n \"family\": \"standardHBSFamily\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"716800\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"60\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"223.52\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND40s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND40s_v3\",\r\n \"family\": \"standardNDSv3Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"39630000\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"672\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"40\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v4\",\r\n \"family\": \"standardEv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64d_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64d_v4\",\r\n \"family\": \"standardEDv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64s_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v4\",\r\n \"family\": \"standardESv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E48ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"1843200\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"462000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1288490188800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"76800\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1207959552\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"ParentSize\",\r\n \"value\": \"Standard_E64ds_v4\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64ds_v4\",\r\n \"family\": \"standardEDSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"zoneDetails\": [\r\n {\r\n \"Name\": [\r\n \"3\",\r\n \"1\"\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"UltraSSDAvailable\",\r\n \"value\": \"True\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"504\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"195\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"CombinedTempDiskAndCachedIOPS\",\r\n \"value\": \"615000\"\r\n },\r\n {\r\n \"name\": \"CachedDiskBytes\",\r\n \"value\": \"1717986918400\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskIOPS\",\r\n \"value\": \"80000\"\r\n },\r\n {\r\n \"name\": \"UncachedDiskBytesPerSecond\",\r\n \"value\": \"1258291200\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"family\": \"standardA8_A11Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"391168\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS,PaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ACUs\",\r\n \"value\": \"225\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV4as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV4as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"90112\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV8as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV8as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"180224\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"4\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV16as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV16as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"360448\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV32as_v4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV32as_v4\",\r\n \"family\": \"standardNVSv4Family\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"zoneDetails\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaxResourceVolumeMB\",\r\n \"value\": \"720896\"\r\n },\r\n {\r\n \"name\": \"OSVhdSizeMB\",\r\n \"value\": \"1047552\"\r\n },\r\n {\r\n \"name\": \"vCPUs\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"HyperVGenerations\",\r\n \"value\": \"V1,V2\"\r\n },\r\n {\r\n \"name\": \"MemoryGB\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"LowPriorityCapable\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"PremiumIO\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"VMDeploymentTypes\",\r\n \"value\": \"IaaS\"\r\n },\r\n {\r\n \"name\": \"vCPUsAvailable\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"GPUs\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"vCPUsPerCore\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"EphemeralOSDiskSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"EncryptionAtHostSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"AcceleratedNetworkingEnabled\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"RdmaEnabled\",\r\n \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"MaxNetworkInterfaces\",\r\n \"value\": \"8\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n },\r\n {\r\n \"type\": \"Zone\",\r\n \"values\": [\r\n \"eastus\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzU1Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14a800e9-092f-42d7-9f1e-d6a7bbf8a5ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5078656d-26fc-4afb-96c6-a683008a15a9" + ], + "x-ms-correlation-request-id": [ + "5078656d-26fc-4afb-96c6-a683008a15a9" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190220Z:5078656d-26fc-4afb-96c6-a683008a15a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "236" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps3553' under resource group 'crptestps3553' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzU1Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\"" + ], + "x-ms-request-id": [ + "79c3f589-b28e-4901-b0b7-b8c35c9e64b4" + ], + "x-ms-correlation-request-id": [ + "b93631ae-738b-4a6e-9b6b-28fcc88a55c6" + ], + "x-ms-arm-service-request-id": [ + "ca12bbfc-1ca2-42bb-b2b3-596e727da874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190226Z:b93631ae-738b-4a6e-9b6b-28fcc88a55c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:26 GMT" + ], + "Content-Length": [ + "1341" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553\",\r\n \"etag\": \"W/\\\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad56a60b-69dc-4662-b084-056f3c212bd3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\",\r\n \"etag\": \"W/\\\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzU1Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "167880b7-a211-48af-b1ce-a0a7fce86863" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\"" + ], + "x-ms-request-id": [ + "60ea994d-843f-449f-9e91-0402f7312c75" + ], + "x-ms-correlation-request-id": [ + "1ae288f4-9721-4262-afa4-bd448f6f9482" + ], + "x-ms-arm-service-request-id": [ + "0120deba-6f9b-4d65-b16a-37f31cbf1696" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190226Z:1ae288f4-9721-4262-afa4-bd448f6f9482" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:26 GMT" + ], + "Content-Length": [ + "1341" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553\",\r\n \"etag\": \"W/\\\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad56a60b-69dc-4662-b084-056f3c212bd3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\",\r\n \"etag\": \"W/\\\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzU1Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84448f59-52a6-4dfa-ae43-432f488dbe9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\"" + ], + "x-ms-request-id": [ + "00d3a468-69b6-4ab1-9cec-c42fbcf23402" + ], + "x-ms-correlation-request-id": [ + "90561564-2a6b-4c9f-896c-1067e835d404" + ], + "x-ms-arm-service-request-id": [ + "8c062597-8170-4c87-ae57-7043d08fa660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190227Z:90561564-2a6b-4c9f-896c-1067e835d404" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:26 GMT" + ], + "Content-Length": [ + "1341" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553\",\r\n \"etag\": \"W/\\\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad56a60b-69dc-4662-b084-056f3c212bd3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\",\r\n \"etag\": \"W/\\\"ded5e4a8-3621-4d8e-b3fb-9294b4f67e22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzU1Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"subnetcrptestps3553\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66fdf3bf-522b-433b-93e1-ba71e3dc45f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "690" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0efebd87-b32c-4c73-b596-f354e60789ef" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/0efebd87-b32c-4c73-b596-f354e60789ef?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "bc9c73c4-6702-4791-b64c-17b20180dc04" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "96dbf128-4490-46a8-99b1-6e5cf82ccae2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190222Z:bc9c73c4-6702-4791-b64c-17b20180dc04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:22 GMT" + ], + "Content-Length": [ + "1339" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553\",\r\n \"etag\": \"W/\\\"13b07514-77e5-466a-b615-5e75f3742867\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ad56a60b-69dc-4662-b084-056f3c212bd3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\",\r\n \"etag\": \"W/\\\"13b07514-77e5-466a-b615-5e75f3742867\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/0efebd87-b32c-4c73-b596-f354e60789ef?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGVmZWJkODctYjMyYy00YzczLWI1OTYtZjM1NGU2MDc4OWVmP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc9c2683-92ef-4878-982e-8c87665179c6" + ], + "x-ms-correlation-request-id": [ + "ceefb078-98b6-434d-8ac0-f9b41a15d243" + ], + "x-ms-arm-service-request-id": [ + "8a7ac11c-1a0f-48f1-9574-ba51b9db60f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190226Z:ceefb078-98b6-434d-8ac0-f9b41a15d243" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:26 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2bf250d-ac11-4de8-894d-eaedf4410e50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9137257e-ce07-4aa4-9ff7-f5c9f987d581" + ], + "x-ms-correlation-request-id": [ + "9137257e-ce07-4aa4-9ff7-f5c9f987d581" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190227Z:9137257e-ce07-4aa4-9ff7-f5c9f987d581" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "237" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps3553' under resource group 'crptestps3553' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\"" + ], + "x-ms-request-id": [ + "65bfe0fc-c192-4262-88ef-0ce66af9e31f" + ], + "x-ms-correlation-request-id": [ + "c33af5ba-8135-488c-93d2-33e96c60964f" + ], + "x-ms-arm-service-request-id": [ + "526a1c07-b8d7-4e20-9f03-ddf3b0a1e902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190228Z:c33af5ba-8135-488c-93d2-33e96c60964f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:27 GMT" + ], + "Content-Length": [ + "1670" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b410ff22-e5ce-42b7-92e8-a3048c2cae73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"botfnlo2nfrenmeeavxtyijl0d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3500b65a-5d86-4b94-9026-f07a3bb67814" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\"" + ], + "x-ms-request-id": [ + "c6b7a3aa-a4d8-4a3f-b920-a0c69974d442" + ], + "x-ms-correlation-request-id": [ + "14c71e02-c546-45c9-8e4c-af3140435139" + ], + "x-ms-arm-service-request-id": [ + "0ddf3d19-a30e-4fe9-a281-c23ddca137c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190228Z:14c71e02-c546-45c9-8e4c-af3140435139" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:27 GMT" + ], + "Content-Length": [ + "1670" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b410ff22-e5ce-42b7-92e8-a3048c2cae73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"botfnlo2nfrenmeeavxtyijl0d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79a78190-ed5a-46f1-b63d-9efb2b11cc02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\"" + ], + "x-ms-request-id": [ + "7a07e359-853a-4865-8191-77f0a49f81e3" + ], + "x-ms-correlation-request-id": [ + "63645356-cf1d-434a-83cf-87b165f02e33" + ], + "x-ms-arm-service-request-id": [ + "b05dfbab-ccb9-48fd-8f2e-b7941c449a13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190229Z:63645356-cf1d-434a-83cf-87b165f02e33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:29 GMT" + ], + "Content-Length": [ + "1670" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b410ff22-e5ce-42b7-92e8-a3048c2cae73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"botfnlo2nfrenmeeavxtyijl0d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"virtualNetworkTaps\": [],\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": []\r\n },\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e933de11-598f-486e-828f-e15ceb5b0f21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "981" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3f3a3ac8-bdcb-4aae-9147-4c1ec396cba1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/3f3a3ac8-bdcb-4aae-9147-4c1ec396cba1?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "e347f715-4537-4d4b-8365-8bc6bf8b4d9d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "26ac400a-ce37-4476-8dea-973b033d7621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190228Z:e347f715-4537-4d4b-8365-8bc6bf8b4d9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:27 GMT" + ], + "Content-Length": [ + "1670" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b410ff22-e5ce-42b7-92e8-a3048c2cae73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"31edb101-bb7b-4a40-9d27-c50b9ade1ad5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3553/subnets/subnetcrptestps3553\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"botfnlo2nfrenmeeavxtyijl0d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff665a95-9818-43e5-9392-6f6e26776bc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_132405846494781778" + ], + "x-ms-request-id": [ + "3a6d3421-550e-44f8-a54f-30590e432f79" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "54f4059f-9767-4c8e-a7b9-e168b7c69587" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190230Z:54f4059f-9767-4c8e-a7b9-e168b7c69587" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:29 GMT" + ], + "Content-Length": [ + "306855" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.ManagedServices.TestExtPublisher00\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.ManagedServices.TestExtPublisher00\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56075cee-aefd-4a17-9d42-3f339ae3232c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f9cefe57-6d7d-423a-bcb5-35422fef9c50_132405846494781778" + ], + "x-ms-request-id": [ + "008c5afa-6332-4eea-a71a-ce8de4398671" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "59f733ab-a0da-44a8-a08e-234653f9d7c6" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190607Z:59f733ab-a0da-44a8-a08e-234653f9d7c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:07 GMT" + ], + "Content-Length": [ + "306855" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.ManagedServices.TestExtPublisher00\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.ManagedServices.TestExtPublisher00\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"danielsol.AzureTools1pns500\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/danielsol.AzureTools1pns500\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitaloffice\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitaloffice\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Hotfix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Diagnostics.Hotfix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/zscaler\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b96dbdb-2328-483c-95b8-4054535d1baf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132272561774469941" + ], + "x-ms-request-id": [ + "06a7df4e-45a0-4a5f-a138-2c37e2e942ce" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1aa8a226-4341-478a-9ef8-d2d6f2ee6ceb" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190232Z:1aa8a226-4341-478a-9ef8-d2d6f2ee6ceb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:31 GMT" + ], + "Content-Length": [ + "6078" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"19h1gen2servertest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/19h1gen2servertest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"microsoftserveroperatingsystems-previews\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/microsoftserveroperatingsystems-previews\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"servertesting\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/servertesting\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-1607-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-1607-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-1607-vhd-sf-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-1607-vhd-sf-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-1803-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-1803-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-1809-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-1809-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-1809-vhd-sf-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-1809-vhd-sf-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-1903-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-1903-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-1909-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-1909-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-10-2004-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-10-2004-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-7-0-sp1-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-7-0-sp1-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-8-0-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-8-0-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-8-1-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-8-1-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Windows-HUB\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/Windows-HUB\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windows-server-2012-vhd-server-prod-stage\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windows-server-2012-vhd-server-prod-stage\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserver-gen2preview\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-gen2preview\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserver-previewtest\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserver-previewtest\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"windowsserverdotnet\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/windowsserverdotnet\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"WindowsServerSemiAnnual\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServerSemiAnnual\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c97f8ff-b1fe-4fd8-ae24-c8571cf147ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132272561774469941" + ], + "x-ms-request-id": [ + "365bcb3b-1949-4970-9f4f-087a87e8b6eb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c90decb3-799d-42bf-a151-8a2cdf57bd31" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190232Z:c90decb3-799d-42bf-a151-8a2cdf57bd31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:32 GMT" + ], + "Content-Length": [ + "26525" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2008-R2-SP1-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-r2-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-r2-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-R2-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-r2-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-r2-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-R2-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2012-r2-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-r2-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-server-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-Server-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-Server-Core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-server-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-server-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-with-containers-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-with-containers-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-with-RDSH\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-with-RDSH\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2016-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-Core-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-Core-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-core-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-core-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gensecond\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gensecond\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-with-Containers\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-with-Containers\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-gs\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-gs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-Datacenter-zhcn\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter-zhcn\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2019-datacenter-zhcn-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-datacenter-zhcn-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1803-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Datacenter-Core-1803-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1803-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1803-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1809-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Datacenter-Core-1809-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1809-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1809-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"Datacenter-Core-1903-with-Containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Datacenter-Core-1903-with-Containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1903-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1903-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1909-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1909-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1909-with-containers-smalldisk-g1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1909-with-containers-smalldisk-g1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-1909-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-1909-with-containers-smalldisk-g2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-2004-with-containers-smalldisk\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-2004-with-containers-smalldisk\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"datacenter-core-2004-with-containers-smalldisk-g2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/datacenter-core-2004-with-containers-smalldisk-g2\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb50a2cf-9f98-4692-8d77-c220c80a835d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132272561774469941" + ], + "x-ms-request-id": [ + "dab0426c-dc5b-4164-b1d4-bbd945c1ac5f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "aaf85396-5e61-466e-8537-c796f6e3b0e2" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190233Z:aaf85396-5e61-466e-8537-c796f6e3b0e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:32 GMT" + ], + "Content-Length": [ + "7624" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180613\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180717\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180717\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180815\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180815\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180912\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180912\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20181010\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20181010\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20181122\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20181122\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20181218\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20181218\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20190115\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20190115\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20190214\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20190214\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20190314\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20190314\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20190410\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20190410\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24468.1907130907\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24468.1907130907\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24494.1907121547\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24494.1907121547\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24511.1908092220\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24511.1908092220\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24519.1909062327\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24519.1909062327\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24533.1910081756\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24533.1910081756\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24535.1911101844\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24535.1911101844\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24540.1912091807\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24540.1912091807\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24544.2001090111\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24544.2001090111\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24548.2002070917\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24548.2002070917\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24550.2003082128\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24550.2003082128\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24552.2004101827\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24552.2004101827\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24554.2005081852\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24554.2005081852\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24556.2006050139\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24556.2006050139\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"7601.24557.2007101756\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/7601.24557.2007101756\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180613?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjEyNy4yMDE4MDYxMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a788257e-3bd1-40db-a872-35a71db9b5aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "e91047d6-10df-436c-bd78-94e832a89049_132272561774469941" + ], + "x-ms-request-id": [ + "a04e0bf3-2406-4c4a-8542-d3e11bd0824a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "60202829-34aa-4f83-86f2-c96ced2cb968" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190233Z:60202829-34aa-4f83-86f2-c96ced2cb968" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:33 GMT" + ], + "Content-Length": [ + "673" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"sizeInGb\": 128,\r\n \"sizeInBytes\": 136367309312\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastus\",\r\n \"name\": \"2.127.20180613\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.127.20180613\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28c24c4b-10d1-4ce4-b5ce-8b9af2f3972c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1645577a-f6e7-478f-a740-cf8936c820cf" + ], + "x-ms-correlation-request-id": [ + "1645577a-f6e7-478f-a740-cf8936c820cf" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190234Z:1645577a-f6e7-478f-a740-cf8936c820cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "042563f7-8ba1-4dbe-bed4-b4559014bedb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "0ab7049f-c5b4-4d9a-a476-d3bbb50f94f6", + "14d33776-55b0-49a7-b5db-eb503d5d8ff2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "aae27534-0503-4023-8870-556cba34961c" + ], + "x-ms-correlation-request-id": [ + "aae27534-0503-4023-8870-556cba34961c" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190234Z:aae27534-0503-4023-8870-556cba34961c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3344" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210032000aba2e07b\",\r\n \"name\": \"cs210032000aba2e07b\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-27T00:29:41.6399717Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-27T00:29:41.6399717Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-27T00:29:41.5618216Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cs210032000aba2e07b.blob.core.windows.net/\",\r\n \"queue\": \"https://cs210032000aba2e07b.queue.core.windows.net/\",\r\n \"table\": \"https://cs210032000aba2e07b.table.core.windows.net/\",\r\n \"file\": \"https://cs210032000aba2e07b.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210037ffe990c019c\",\r\n \"name\": \"cs210037ffe990c019c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T13:55:13.0955989Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T13:55:13.0955989Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-06T13:55:12.9862585Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cs210037ffe990c019c.blob.core.windows.net/\",\r\n \"queue\": \"https://cs210037ffe990c019c.queue.core.windows.net/\",\r\n \"table\": \"https://cs210037ffe990c019c.table.core.windows.net/\",\r\n \"file\": \"https://cs210037ffe990c019c.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/theo_test/providers/Microsoft.Storage/storageAccounts/theotestdiag\",\r\n \"name\": \"theotestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-06T14:58:17.9466515Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-06T14:58:17.9466515Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-06T14:58:17.8997894Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://theotestdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://theotestdiag.queue.core.windows.net/\",\r\n \"table\": \"https://theotestdiag.table.core.windows.net/\",\r\n \"file\": \"https://theotestdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.127.20180613\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo2\",\r\n \"adminPassword\": \"PLACEHOLDER1@\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": false\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cs210032000aba2e07b.blob.core.windows.net/\"\r\n }\r\n },\r\n \"priority\": \"Low\",\r\n \"billingProfile\": {\r\n \"maxPrice\": 0.1538\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb60c891-d777-4735-9bdd-e0ecbc210756" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1072" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a3197366-1cc0-481b-8876-1d6fc74f8a86?api-version=2020-06-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3197366-1cc0-481b-8876-1d6fc74f8a86" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3cee1eaa-8924-4afd-88f9-48c0ee0f172f" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190236Z:3cee1eaa-8924-4afd-88f9-48c0ee0f172f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:35 GMT" + ], + "Content-Length": [ + "1858" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"6a6d2e9f-32a9-4ef6-aa66-659c76c9e526\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.127.20180613\",\r\n \"exactVersion\": \"2.127.20180613\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo2\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"patchSettings\": {\r\n \"patchMode\": \"Manual\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cs210032000aba2e07b.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"priority\": \"Low\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": 0.1538\r\n }\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a3197366-1cc0-481b-8876-1d6fc74f8a86?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTMxOTczNjYtMWNjMC00ODFiLTg4NzYtMWQ2ZmM3NGY4YTg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "50" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "64bb56c4-8bfc-4b1e-8345-df128e1c1835" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e292d48c-a471-4c59-8ba8-ba25fd1ec2f2" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190246Z:e292d48c-a471-4c59-8ba8-ba25fd1ec2f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:02:45 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:02:35.4758353-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3197366-1cc0-481b-8876-1d6fc74f8a86\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a3197366-1cc0-481b-8876-1d6fc74f8a86?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTMxOTczNjYtMWNjMC00ODFiLTg4NzYtMWQ2ZmM3NGY4YTg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "28c176f5-13f3-4cb9-ba3b-ae5b35aa4e37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "bb92abce-54e2-428e-b490-bdc7ecdd6949" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190336Z:bb92abce-54e2-428e-b490-bdc7ecdd6949" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:03:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:02:35.4758353-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3197366-1cc0-481b-8876-1d6fc74f8a86\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a3197366-1cc0-481b-8876-1d6fc74f8a86?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTMxOTczNjYtMWNjMC00ODFiLTg4NzYtMWQ2ZmM3NGY4YTg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae69fee5-6629-48cf-9268-18ae23e1da1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9cd2fe32-4aa7-48a1-b39a-eac9df890486" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190426Z:9cd2fe32-4aa7-48a1-b39a-eac9df890486" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:04:26 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:02:35.4758353-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3197366-1cc0-481b-8876-1d6fc74f8a86\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a3197366-1cc0-481b-8876-1d6fc74f8a86?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTMxOTczNjYtMWNjMC00ODFiLTg4NzYtMWQ2ZmM3NGY4YTg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7bc45820-4667-4dd6-96e5-5c3e33f50de8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "44e16bcd-83d7-428f-86a7-0d695603ef31" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190516Z:44e16bcd-83d7-428f-86a7-0d695603ef31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:05:16 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:02:35.4758353-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3197366-1cc0-481b-8876-1d6fc74f8a86\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a3197366-1cc0-481b-8876-1d6fc74f8a86?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTMxOTczNjYtMWNjMC00ODFiLTg4NzYtMWQ2ZmM3NGY4YTg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "96b3f73a-fed7-438c-824c-eca66a1fbeb1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "cdc25414-ca91-4938-a439-2671097c3db8" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190607Z:cdc25414-ca91-4938-a439-2671097c3db8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:06 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:02:35.4758353-04:00\",\r\n \"endTime\": \"2020-08-12T15:05:53.8052572-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a3197366-1cc0-481b-8876-1d6fc74f8a86\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4cdf24a-2154-48a8-a380-355ea499bd00" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "53b9be59-8cee-4b80-be9a-7a943f4d4fa3" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190607Z:53b9be59-8cee-4b80-be9a-7a943f4d4fa3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:07 GMT" + ], + "Content-Length": [ + "2130" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmcrptestps3553\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"6a6d2e9f-32a9-4ef6-aa66-659c76c9e526\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.127.20180613\",\r\n \"exactVersion\": \"2.127.20180613\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmcrptestps3553_OsDisk_1_96d91add9308416998827e20e903a778\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/CRPTESTPS3553/providers/Microsoft.Compute/disks/vmcrptestps3553_OsDisk_1_96d91add9308416998827e20e903a778\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo2\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"patchSettings\": {\r\n \"patchMode\": \"Manual\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Network/networkInterfaces/niccrptestps3553\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://cs210032000aba2e07b.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": \"Low\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": 0.1538\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f0abe79-4cc7-4830-9cb5-0f3948398d4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132410252425665670" + ], + "x-ms-request-id": [ + "4f64ef01-a533-4397-9515-59509c6f0ea2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "97c7be24-7861-403c-a569-8f95f71217ad" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190608Z:97c7be24-7861-403c-a569-8f95f71217ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:08 GMT" + ], + "Content-Length": [ + "1033" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9CR0luZm8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2d0f1a0-d5b2-4d0f-916f-b5198cf715af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "ab90d441-6939-4ab1-9dfa-bef247d64088_132410252425665670" + ], + "x-ms-request-id": [ + "38cf1a45-0015-46a8-b913-7f1eb452ebf2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "f2c8dd75-3671-40a5-a404-bd084ea6070a" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190608Z:f2c8dd75-3671-40a5-a404-bd084ea6070a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:08 GMT" + ], + "Content-Length": [ + "1256" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553/extensions/BGInfo?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM1NTMvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae7c6354-7f61-4351-a4af-86d6c70a028a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "186" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/b9cd00d7-2a70-4683-856f-77b7cf390e6b?api-version=2020-06-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b9cd00d7-2a70-4683-856f-77b7cf390e6b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "79addaa7-f7ef-4b06-9a33-7dcbd5f2292a" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190609Z:79addaa7-f7ef-4b06-9a33-7dcbd5f2292a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:09 GMT" + ], + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/b9cd00d7-2a70-4683-856f-77b7cf390e6b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjljZDAwZDctMmE3MC00NjgzLTg1NmYtNzdiN2NmMzkwZTZiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0c40fd84-19c4-410b-a3ea-b2fccc5ba664" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "0e3dae1a-70d5-4f9e-9ed0-336f348e2464" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190639Z:0e3dae1a-70d5-4f9e-9ed0-336f348e2464" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:39 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:08.9929216-04:00\",\r\n \"endTime\": \"2020-08-12T15:06:38.1033384-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b9cd00d7-2a70-4683-856f-77b7cf390e6b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553/extensions/BGInfo?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM1NTMvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87a057d1-b882-4b22-814a-35ccd32d1b73" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "c46159d8-c966-4e32-87e9-7a9fff7533db" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190639Z:c46159d8-c966-4e32-87e9-7a9fff7533db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:39 GMT" + ], + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps3553/providers/Microsoft.Compute/virtualMachines/vmcrptestps3553/assessPatches?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM1NTMvYXNzZXNzUGF0Y2hlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1705a5d4-a451-4910-b050-83e138e46820" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?monitor=true&api-version=2020-06-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4a3ae438-ffb2-4d89-a400-3b0b052bba5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f5097183-1f8e-434a-b919-55002d067878" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190640Z:f5097183-1f8e-434a-b919-55002d067878" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:06:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "88adf78a-0960-4722-acc6-4fb7a8240bec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "15eb41af-7ee9-4344-b557-5a2c5dc17c86" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190710Z:15eb41af-7ee9-4344-b557-5a2c5dc17c86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:07:10 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fbbeac6d-37b2-4cb8-ab2d-0fa44f48acb7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "aff23cd9-032b-43f6-a3f3-4fcbe66c647a" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190740Z:aff23cd9-032b-43f6-a3f3-4fcbe66c647a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:07:40 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c305e6e-6354-4392-96af-69fccf6bc90c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "265829fe-bc2b-4f64-89a7-2a3d86cec6fb" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190810Z:265829fe-bc2b-4f64-89a7-2a3d86cec6fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:08:09 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1e37389a-0338-4dbc-b80a-8a9ae0fbadab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "79b3130f-cd20-45d8-ac5b-d76dc0fc28b0" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190840Z:79b3130f-cd20-45d8-ac5b-d76dc0fc28b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:08:39 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86a1099c-7e19-426d-aed7-82b4ecc9f50a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "23cfdf5e-b5f2-4efe-ae0a-22c6f679d288" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190910Z:23cfdf5e-b5f2-4efe-ae0a-22c6f679d288" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:09:09 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29974" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40a6e178-086a-4cb5-86c7-97a68176eaa5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "e27c86c9-5c4f-4824-b895-bfaa19eaa759" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T190940Z:e27c86c9-5c4f-4824-b895-bfaa19eaa759" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:09:40 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "204eef52-7c08-48db-ad3c-331cc3e88417" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "ba832f54-3040-46b8-8df6-3de512524898" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191010Z:ba832f54-3040-46b8-8df6-3de512524898" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:10:10 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29968" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63e9614a-a4aa-488d-b7c4-61f96d228ce2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "4d1841b7-2877-47cd-8f6e-795e5d54b9e7" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191040Z:4d1841b7-2877-47cd-8f6e-795e5d54b9e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:10:40 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ace64cac-5ac7-4ba1-86cc-24dbf1d2bf2a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "a2da0d1b-e52f-4e16-8d6b-817e10ef3811" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191111Z:a2da0d1b-e52f-4e16-8d6b-817e10ef3811" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:11:10 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "07a260bc-9b4b-4ebd-95e0-f7abaf2f5f13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "951108d8-38bc-45fb-b171-2e68b22bf58b" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191141Z:951108d8-38bc-45fb-b171-2e68b22bf58b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:11:40 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29960" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bdbf091-955b-45c3-a0c9-7a5f9d991e84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "27d07745-b231-4230-a19c-52cc508884ff" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191211Z:27d07745-b231-4230-a19c-52cc508884ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:12:11 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29957" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd846925-d850-4d1a-9aff-eeeb590ccd5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "c2502460-a486-4c8b-b38b-33002ba39db4" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191241Z:c2502460-a486-4c8b-b38b-33002ba39db4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:12:41 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29954" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f9b4b1d-8ba2-4331-ac8d-d1d8863e8812" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "e2c89384-241b-4593-abb1-5f94dbc6cde5" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191311Z:e2c89384-241b-4593-abb1-5f94dbc6cde5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:13:11 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29951" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23618ffc-4b33-421d-b748-a4980e8e1dc8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "01999fe4-8f96-49fd-8066-15a8f8577e33" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191341Z:01999fe4-8f96-49fd-8066-15a8f8577e33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:13:40 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29948" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "473689eb-bdff-4e5f-98b8-c781350794e4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "2429cfb6-cfb6-4fa9-981c-715dcdac3328" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191411Z:2429cfb6-cfb6-4fa9-981c-715dcdac3328" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:14:11 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1eeedce9-d144-4764-8c58-4f74a14ce7f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "20edad04-22ac-4ad6-a667-e9b0efd985f4" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191442Z:20edad04-22ac-4ad6-a667-e9b0efd985f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:14:41 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29942" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "41160494-18a4-4dae-ab7e-43d7104bb31e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "75d0d265-bb24-48ca-a34c-9b11c54e5ab4" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191512Z:75d0d265-bb24-48ca-a34c-9b11c54e5ab4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:15:12 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29940" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fffad2bc-cdd9-4392-b51e-dbc2883c8019" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "f9d27319-522f-465f-8dfb-3f70bc6356db" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191542Z:f9d27319-522f-465f-8dfb-3f70bc6356db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:15:42 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29937" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "507a0b3b-a2f4-4272-a7fd-8514610d18f8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "baa4d847-9e1d-47ab-a9d1-6acf7f8e4756" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191612Z:baa4d847-9e1d-47ab-a9d1-6acf7f8e4756" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:16:12 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be7b115e-e06f-4145-a931-39d4cd395cec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "14e3cfba-a366-4ff7-b8e5-7246749436bb" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191642Z:14e3cfba-a366-4ff7-b8e5-7246749436bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:16:41 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29931" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6afd730f-9f80-49c6-a2e3-d300a3879f7b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "7bfdc2ca-a401-44b5-950c-bf1807c82d64" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191712Z:7bfdc2ca-a401-44b5-950c-bf1807c82d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:17:12 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "08650867-2357-4aaa-812b-70c8d3d07c4a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "d4e9faa4-9594-432f-8181-dca514b89c3f" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191743Z:d4e9faa4-9594-432f-8181-dca514b89c3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:17:43 GMT" + ], + "Content-Length": [ + "5876" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-12T15:06:39.930539-04:00\",\r\n \"endTime\": \"2020-08-12T15:17:19.2788237-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"status\": \"Succeeded\",\r\n \"assessmentActivityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"rebootPending\": true,\r\n \"criticalAndSecurityPatchCount\": 9,\r\n \"otherPatchCount\": 4,\r\n \"startDateTime\": \"2020-08-12T15:06:40.0086941-04:00\",\r\n \"availablePatches\": [\r\n {\r\n \"patchId\": \"81da307f-ddf0-4001-b003-d9aa618dcd84\",\r\n \"name\": \"Update for Windows Server 2008 R2 x64 Edition (KB2923545)\",\r\n \"kbId\": \"2923545\",\r\n \"classifications\": [\r\n \"Updates\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2014-02-24T19:00:00-05:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"65ecb638-7b1c-4aa1-a107-f76a5d069fa5\",\r\n \"name\": \"Security Update for Windows Server 2008 R2 x64 Edition (KB3020388)\",\r\n \"kbId\": \"3020388\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2015-01-12T19:00:00-05:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"26f2a58a-0490-42f9-8ecd-08a256322743\",\r\n \"name\": \"Security Update for Windows Server 2008 R2 x64 Edition (KB3075226)\",\r\n \"kbId\": \"3075226\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2015-08-10T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"10d15f81-06cb-4693-a10a-12efd1a48129\",\r\n \"name\": \"Cumulative Security Update for Internet Explorer 11 for Windows Server 2008 R2 for x64-based Systems (KB4343205)\",\r\n \"kbId\": \"4343205\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2018-08-13T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"dde351ae-7a1d-415d-877a-b9f090d6798d\",\r\n \"name\": \"2019-03 Security Update for Windows Server 2008 R2 for x64-based Systems (KB4474419)\",\r\n \"kbId\": \"4474419\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-03-11T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"1d4f0343-a41a-4782-8aed-18a620431171\",\r\n \"name\": \"2019-03 Servicing Stack Update for Windows Server 2008 R2 for x64-based Systems (KB4490628)\",\r\n \"kbId\": \"4490628\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n \"publishedDate\": \"2019-03-11T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"4a762eb0-0f47-41fd-9fe3-b630599cf87c\",\r\n \"name\": \"2019-09 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4516065)\",\r\n \"kbId\": \"4516065\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-09-09T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"ac54099f-27ab-4e36-befd-a29c67ddeb6f\",\r\n \"name\": \"2019-09 Security Update for Windows Server 2008 R2 for x64-based Systems (KB4474419)\",\r\n \"kbId\": \"4474419\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-09-09T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"e3eb4f22-0949-41ea-8125-da79b35438fb\",\r\n \"name\": \"2019-09 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4516048)\",\r\n \"kbId\": \"4516048\",\r\n \"classifications\": [\r\n \"Updates\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-09-23T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"6b472058-2645-4e95-9235-6c89e6305c95\",\r\n \"name\": \"Microsoft .NET Framework 4.8 for Windows Server 2008 R2 for x64 (KB4503548)\",\r\n \"kbId\": \"4503548\",\r\n \"classifications\": [\r\n \"FeaturePack\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-01-13T19:00:00-05:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"7edf6088-8fbb-4255-bb7f-2a9a3e2c34e6\",\r\n \"name\": \"Windows Malicious Software Removal Tool x64 - v5.82 (KB890830)\",\r\n \"kbId\": \"890830\",\r\n \"classifications\": [\r\n \"UpdateRollUp\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-05-11T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"029fc2e8-b363-4729-b505-73da12319748\",\r\n \"name\": \"2020-08 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 for Windows Server 2008 R2 for x64 (KB4570506)\",\r\n \"kbId\": \"4570506\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-08-10T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"253d11ca-91b3-49ba-8ab9-eeaf05b07ed9\",\r\n \"name\": \"2020-08 Servicing Stack Update for Windows Server 2008 R2 for x64-based Systems (KB4570673)\",\r\n \"kbId\": \"4570673\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n \"publishedDate\": \"2020-08-10T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/4a3ae438-ffb2-4d89-a400-3b0b052bba5a?monitor=true&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGEzYWU0MzgtZmZiMi00ZDg5LWE0MDAtM2IwYjA1MmJiYTVhP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29927" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a004fac-be8c-4fc1-881c-8cd5efc42b88" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "9f97c262-ff63-4e32-8f91-fbb385050a1d" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191743Z:9f97c262-ff63-4e32-8f91-fbb385050a1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:17:43 GMT" + ], + "Content-Length": [ + "5652" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"assessmentActivityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"rebootPending\": true,\r\n \"criticalAndSecurityPatchCount\": 9,\r\n \"otherPatchCount\": 4,\r\n \"startDateTime\": \"2020-08-12T15:06:40.0086941-04:00\",\r\n \"availablePatches\": [\r\n {\r\n \"patchId\": \"81da307f-ddf0-4001-b003-d9aa618dcd84\",\r\n \"name\": \"Update for Windows Server 2008 R2 x64 Edition (KB2923545)\",\r\n \"kbId\": \"2923545\",\r\n \"classifications\": [\r\n \"Updates\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2014-02-24T19:00:00-05:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"65ecb638-7b1c-4aa1-a107-f76a5d069fa5\",\r\n \"name\": \"Security Update for Windows Server 2008 R2 x64 Edition (KB3020388)\",\r\n \"kbId\": \"3020388\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2015-01-12T19:00:00-05:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"26f2a58a-0490-42f9-8ecd-08a256322743\",\r\n \"name\": \"Security Update for Windows Server 2008 R2 x64 Edition (KB3075226)\",\r\n \"kbId\": \"3075226\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2015-08-10T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"10d15f81-06cb-4693-a10a-12efd1a48129\",\r\n \"name\": \"Cumulative Security Update for Internet Explorer 11 for Windows Server 2008 R2 for x64-based Systems (KB4343205)\",\r\n \"kbId\": \"4343205\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2018-08-13T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"dde351ae-7a1d-415d-877a-b9f090d6798d\",\r\n \"name\": \"2019-03 Security Update for Windows Server 2008 R2 for x64-based Systems (KB4474419)\",\r\n \"kbId\": \"4474419\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-03-11T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"1d4f0343-a41a-4782-8aed-18a620431171\",\r\n \"name\": \"2019-03 Servicing Stack Update for Windows Server 2008 R2 for x64-based Systems (KB4490628)\",\r\n \"kbId\": \"4490628\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n \"publishedDate\": \"2019-03-11T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"4a762eb0-0f47-41fd-9fe3-b630599cf87c\",\r\n \"name\": \"2019-09 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4516065)\",\r\n \"kbId\": \"4516065\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-09-09T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"ac54099f-27ab-4e36-befd-a29c67ddeb6f\",\r\n \"name\": \"2019-09 Security Update for Windows Server 2008 R2 for x64-based Systems (KB4474419)\",\r\n \"kbId\": \"4474419\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-09-09T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"e3eb4f22-0949-41ea-8125-da79b35438fb\",\r\n \"name\": \"2019-09 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4516048)\",\r\n \"kbId\": \"4516048\",\r\n \"classifications\": [\r\n \"Updates\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2019-09-23T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"6b472058-2645-4e95-9235-6c89e6305c95\",\r\n \"name\": \"Microsoft .NET Framework 4.8 for Windows Server 2008 R2 for x64 (KB4503548)\",\r\n \"kbId\": \"4503548\",\r\n \"classifications\": [\r\n \"FeaturePack\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-01-13T19:00:00-05:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"7edf6088-8fbb-4255-bb7f-2a9a3e2c34e6\",\r\n \"name\": \"Windows Malicious Software Removal Tool x64 - v5.82 (KB890830)\",\r\n \"kbId\": \"890830\",\r\n \"classifications\": [\r\n \"UpdateRollUp\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-05-11T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"029fc2e8-b363-4729-b505-73da12319748\",\r\n \"name\": \"2020-08 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 for Windows Server 2008 R2 for x64 (KB4570506)\",\r\n \"kbId\": \"4570506\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"CanRequestReboot\",\r\n \"publishedDate\": \"2020-08-10T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n },\r\n {\r\n \"patchId\": \"253d11ca-91b3-49ba-8ab9-eeaf05b07ed9\",\r\n \"name\": \"2020-08 Servicing Stack Update for Windows Server 2008 R2 for x64-based Systems (KB4570673)\",\r\n \"kbId\": \"4570673\",\r\n \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n \"publishedDate\": \"2020-08-10T20:00:00-04:00\",\r\n \"activityId\": \"4a3ae438-ffb2-4d89-a400-3b0b052bba5a\",\r\n \"lastModifiedDateTime\": \"2020-08-12T15:16:28.409625-04:00\",\r\n \"assessmentState\": \"Available\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps3553?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM1NTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48515808-d5be-4bf3-91b8-49296b09c91c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "d8a6ad77-fc9c-4d24-9a43-543603e3ce62" + ], + "x-ms-correlation-request-id": [ + "d8a6ad77-fc9c-4d24-9a43-543603e3ce62" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191744Z:d8a6ad77-fc9c-4d24-9a43-543603e3ce62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:17:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "83750bf6-41e0-4ae1-b04e-28fa720da451" + ], + "x-ms-correlation-request-id": [ + "83750bf6-41e0-4ae1-b04e-28fa720da451" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191759Z:83750bf6-41e0-4ae1-b04e-28fa720da451" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:17:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9317d628-aab6-4cef-8642-9710e55eaa3c" + ], + "x-ms-correlation-request-id": [ + "9317d628-aab6-4cef-8642-9710e55eaa3c" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191814Z:9317d628-aab6-4cef-8642-9710e55eaa3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:18:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "2e17d6ad-1dcc-4830-9dc7-c9054e807a4c" + ], + "x-ms-correlation-request-id": [ + "2e17d6ad-1dcc-4830-9dc7-c9054e807a4c" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191829Z:2e17d6ad-1dcc-4830-9dc7-c9054e807a4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:18:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "859fbd93-21c8-4113-9de8-992c4b2eb95f" + ], + "x-ms-correlation-request-id": [ + "859fbd93-21c8-4113-9de8-992c4b2eb95f" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191844Z:859fbd93-21c8-4113-9de8-992c4b2eb95f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:18:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "a7c93289-c9c2-4b9f-96bf-731e7f9d437c" + ], + "x-ms-correlation-request-id": [ + "a7c93289-c9c2-4b9f-96bf-731e7f9d437c" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191859Z:a7c93289-c9c2-4b9f-96bf-731e7f9d437c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:18:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "1d337315-6ce0-4b07-83de-677455ff4227" + ], + "x-ms-correlation-request-id": [ + "1d337315-6ce0-4b07-83de-677455ff4227" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191915Z:1d337315-6ce0-4b07-83de-677455ff4227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:19:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "8414a99b-724b-42de-b442-f5f44bb2b599" + ], + "x-ms-correlation-request-id": [ + "8414a99b-724b-42de-b442-f5f44bb2b599" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191930Z:8414a99b-724b-42de-b442-f5f44bb2b599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:19:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "eefb28ae-bc31-443c-85d6-de049d3daa2b" + ], + "x-ms-correlation-request-id": [ + "eefb28ae-bc31-443c-85d6-de049d3daa2b" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T191945Z:eefb28ae-bc31-443c-85d6-de049d3daa2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:19:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "3ad9fbd4-dad6-4bbd-afd8-bd76482820be" + ], + "x-ms-correlation-request-id": [ + "3ad9fbd4-dad6-4bbd-afd8-bd76482820be" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192000Z:3ad9fbd4-dad6-4bbd-afd8-bd76482820be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:19:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "d9fb1a31-473e-480a-be72-884f8cdd293a" + ], + "x-ms-correlation-request-id": [ + "d9fb1a31-473e-480a-be72-884f8cdd293a" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192015Z:d9fb1a31-473e-480a-be72-884f8cdd293a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:20:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "769ee351-2dd9-43a6-af10-b32a050f6579" + ], + "x-ms-correlation-request-id": [ + "769ee351-2dd9-43a6-af10-b32a050f6579" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192030Z:769ee351-2dd9-43a6-af10-b32a050f6579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:20:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "fa1f61de-57b8-4118-aa00-d55fb4418ae6" + ], + "x-ms-correlation-request-id": [ + "fa1f61de-57b8-4118-aa00-d55fb4418ae6" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192045Z:fa1f61de-57b8-4118-aa00-d55fb4418ae6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:20:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "771da2ab-c3d4-4d9f-bb29-41b23d37658c" + ], + "x-ms-correlation-request-id": [ + "771da2ab-c3d4-4d9f-bb29-41b23d37658c" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192101Z:771da2ab-c3d4-4d9f-bb29-41b23d37658c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:21:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "29a4d14b-055f-4731-b43a-5f80647a75c1" + ], + "x-ms-correlation-request-id": [ + "29a4d14b-055f-4731-b43a-5f80647a75c1" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192116Z:29a4d14b-055f-4731-b43a-5f80647a75c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:21:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "d35a3c55-35c4-46f4-b0e2-372f6d5a2b0e" + ], + "x-ms-correlation-request-id": [ + "d35a3c55-35c4-46f4-b0e2-372f6d5a2b0e" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192131Z:d35a3c55-35c4-46f4-b0e2-372f6d5a2b0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:21:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "d5737f15-8a50-4aa0-8a58-2de60a53aac4" + ], + "x-ms-correlation-request-id": [ + "d5737f15-8a50-4aa0-8a58-2de60a53aac4" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192146Z:d5737f15-8a50-4aa0-8a58-2de60a53aac4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:21:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "bec46a4e-0402-40e9-b535-26bd4a25cca0" + ], + "x-ms-correlation-request-id": [ + "bec46a4e-0402-40e9-b535-26bd4a25cca0" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192201Z:bec46a4e-0402-40e9-b535-26bd4a25cca0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:22:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "ff0df2f7-bf28-4469-bc83-7c6e3451b551" + ], + "x-ms-correlation-request-id": [ + "ff0df2f7-bf28-4469-bc83-7c6e3451b551" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192216Z:ff0df2f7-bf28-4469-bc83-7c6e3451b551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:22:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "28287667-cda9-4b2c-8b56-cc7b145dfeb0" + ], + "x-ms-correlation-request-id": [ + "28287667-cda9-4b2c-8b56-cc7b145dfeb0" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192231Z:28287667-cda9-4b2c-8b56-cc7b145dfeb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:22:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "09679fad-e3f7-453d-979e-9c477766deb7" + ], + "x-ms-correlation-request-id": [ + "09679fad-e3f7-453d-979e-9c477766deb7" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192247Z:09679fad-e3f7-453d-979e-9c477766deb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:22:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "9311e020-cd01-4839-a03e-9552c94541ae" + ], + "x-ms-correlation-request-id": [ + "9311e020-cd01-4839-a03e-9552c94541ae" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192302Z:9311e020-cd01-4839-a03e-9552c94541ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:23:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "c00caa5d-3ef2-468b-b62e-bfd65b1ab1b1" + ], + "x-ms-correlation-request-id": [ + "c00caa5d-3ef2-468b-b62e-bfd65b1ab1b1" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192317Z:c00caa5d-3ef2-468b-b62e-bfd65b1ab1b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:23:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzNTUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TlRVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "f396469e-2b61-43a2-90cc-e92776b16f28" + ], + "x-ms-correlation-request-id": [ + "f396469e-2b61-43a2-90cc-e92776b16f28" + ], + "x-ms-routing-request-id": [ + "CANADACENTRAL:20200812T192317Z:f396469e-2b61-43a2-90cc-e92776b16f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 12 Aug 2020 19:23:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-InvokeAzVmPatchAssessment": [ + "crptestps3553" + ] + }, + "Variables": { + "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + } +} \ No newline at end of file diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index a94054ddcd78..74f4aa77b87f 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -168,14 +168,15 @@ CmdletsToExport = 'Remove-AzAvailabilitySet', 'Get-AzAvailabilitySet', 'Remove-AzHost', 'New-AzDiskEncryptionSetConfig', 'New-AzDiskEncryptionSet', 'Get-AzDiskEncryptionSet', 'Remove-AzDiskEncryptionSet', 'Update-AzDiskEncryptionSet', - 'Set-AzVmssOrchestrationServiceState', 'New-AzDiskAccess', 'Remove-AzDiskAccess', 'Get-AzDiskAccess' + 'Set-AzVmssOrchestrationServiceState', 'New-AzDiskAccess', 'Remove-AzDiskAccess', 'Get-AzDiskAccess', + 'Invoke-AzVmPatchAssessment' # Variables to export from this module # VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = 'Get-AzVmssDiskEncryptionStatus', - 'Get-AzVmssVMDiskEncryptionStatus', 'Repair-AzVmssServiceFabricUD' + 'Get-AzVmssVMDiskEncryptionStatus', 'Repair-AzVmssServiceFabricUD', 'Invoke-AzVmAssessPatch', 'Invoke-AzVmPatchAssess' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index dbc10b11f7d4..c128dc1f8b07 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -22,6 +22,7 @@ * Added '-EncryptionAtHost' parameter to New-AzVm, New-AzVmss, New-AzVMConfig, New-AzVmssConfig, Update-AzVM, and Update-AzVmss * Added 'SecurityProfile' to Get-AzVM and Get-AzVmss return object * Added the '-InstanceView' switch as optional parameter to Get-AzHostGroup +* New cmdlet 'Invoke-AzVmPatchAssessment' ## Version 4.2.1 * Added warning when using `New-AzVmss` without "latest" image version diff --git a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs index ca5bc3a00e58..a7f73db9290a 100644 --- a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs +++ b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs @@ -180,11 +180,16 @@ private static void Initialize() .ForMember(c => c.Type, o => o.MapFrom(r => r.Type1)); cfg.CreateMap() .ForMember(c => c.Type1, o => o.MapFrom(r => r.Type)); + cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + + cfg.CreateMap(); + cfg.CreateMap(); + }); _mapper = config.CreateMapper(); } diff --git a/src/Compute/Compute/Generated/VirtualMachine/InvokeAzureVMPatchAssessmentCommand.cs b/src/Compute/Compute/Generated/VirtualMachine/InvokeAzureVMPatchAssessmentCommand.cs new file mode 100644 index 000000000000..3ce7bc3be8cd --- /dev/null +++ b/src/Compute/Compute/Generated/VirtualMachine/InvokeAzureVMPatchAssessmentCommand.cs @@ -0,0 +1,116 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Compute.Automation.Models; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Management.Compute; + +namespace Microsoft.Azure.Commands.Compute.Automation +{ + [Cmdlet(VerbsLifecycle.Invoke, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VMPatchAssessment", SupportsShouldProcess = true, DefaultParameterSetName = DefaultParameterSet )] + [OutputType(typeof(PSVirtualMachinePatchAssessmentResult))] + [Alias("Invoke-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VMPatchAssess", "Invoke-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VMAssessPatch")] + + public partial class InvokeAzureVMPatchAssessmentCommand : ComputeAutomationBaseCmdlet + { + private const string DefaultParameterSet = "DefaultParameterSet"; + private const string InputObjectParameterSet = "InputObjectParameterSet"; + private const string ResourceIDParameterSet = "ResourceIDParameterSet"; + + [Parameter( + Mandatory = true, + Position = 0, + ParameterSetName = DefaultParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + Position = 1, + ParameterSetName = DefaultParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Virtual Machine name")] + [ResourceNameCompleter("Microsoft.Compute/VirtualMachines", "ResourceGroupName")] + public string VMName { get; set; } + + [Parameter( + Mandatory = true, + Position = 0, + ParameterSetName = ResourceIDParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Resource ID for your virtual machine.")] + [ResourceIdCompleter("Microsoft.Compute/virtualMachines")] + public string ResourceId { get; set; } + + [Alias("VMProfile")] + [Parameter( + Mandatory = true, + Position = 0, + ParameterSetName = InputObjectParameterSet, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "PowerShell Virtual Machine Object")] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + ExecuteClientAction(() => + { + if (ShouldProcess(this.VMName, VerbsLifecycle.Invoke)) + { + string resourceGroupName; + string vmName; + switch (this.ParameterSetName) + { + case ResourceIDParameterSet: + resourceGroupName = GetResourceGroupName(this.ResourceId); + vmName = GetResourceName(this.ResourceId, "Microsoft.Compute/virtualmachines"); + break; + case InputObjectParameterSet: + resourceGroupName = GetResourceGroupName(this.VM.Id); + vmName = GetResourceName(this.VM.Id, "Microsoft.Compute/virtualmachines"); + break; + default: + resourceGroupName = this.ResourceGroupName; + vmName = this.VMName; + break; + } + + + var result = VirtualMachinesClient.AssessPatches(resourceGroupName, vmName); + var psObject = new PSVirtualMachinePatchAssessmentResult(); + ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); + WriteObject(psObject); + } + }); + } + } +} diff --git a/src/Compute/Compute/Manual/PSVirtualMachinePatchAssessmentResult.cs b/src/Compute/Compute/Manual/PSVirtualMachinePatchAssessmentResult.cs new file mode 100644 index 000000000000..ba7e8e11a8e8 --- /dev/null +++ b/src/Compute/Compute/Manual/PSVirtualMachinePatchAssessmentResult.cs @@ -0,0 +1,35 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; +using System.Collections.Generic; +using Microsoft.Azure.Management.Compute.Models; + + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSVirtualMachinePatchAssessmentResult + { + public string Status { get; set; } + public string AssessmentActivityId { get; set; } + public bool? RebootPending { get; set; } + public int? CriticalAndSecurityPatchCount { get; set; } + public int? OtherPatchCount { get; set; } + public DateTime? StartDateTime { get; set; } + public IList Patches { get; set; } + public ApiError Error { get; set; } + } +} diff --git a/src/Compute/Compute/help/Az.Compute.md b/src/Compute/Compute/help/Az.Compute.md index 4087dc7cbc4c..3637df3706f6 100644 --- a/src/Compute/Compute/help/Az.Compute.md +++ b/src/Compute/Compute/help/Az.Compute.md @@ -212,6 +212,9 @@ Grants an access to a disk. ### [Grant-AzSnapshotAccess](Grant-AzSnapshotAccess.md) Grants an access to a snapshot. +### [Invoke-AzVMPatchAssessment](Invoke-AzVMPatchAssessment.md) +Assess patch state of a virtual machine. + ### [Invoke-AzVMReimage](Invoke-AzVMReimage.md) Reimage an Azure virtual machine. diff --git a/src/Compute/Compute/help/Get-AzDiskAccess.md b/src/Compute/Compute/help/Get-AzDiskAccess.md index 872a30692318..b6b28685576c 100644 --- a/src/Compute/Compute/help/Get-AzDiskAccess.md +++ b/src/Compute/Compute/help/Get-AzDiskAccess.md @@ -28,7 +28,7 @@ The **Get-AzDiskAccess** cmdlet gets the properties of Disk Accesses ## EXAMPLES -### Example 1 +### Example 1: Using Default Parameter Set ``` PS C:\> Get-AzDiskAccess -ResourceGroupName 'ResourceGroup01' -Name 'DiskAccess01' @@ -44,7 +44,7 @@ Tags : {} This command gets the properties of a Disk Access resource named 'DiskAccess01' in the resource group 'ResourceGroup01'. -### Example 2 +### Example 2: Get-AzDiskAccess by Resource Group ``` PS C:\> Get-AzDiskAccess -ResourceGroupName 'ResourceGroup01' @@ -70,9 +70,9 @@ Tags : {} This command gets the properties of all disk accesses in the resource group 'ResourceGroup01'. -### Example 3 +### Example 3: Getting all Disk Access ``` -PS C:\> Get-AzDisk +PS C:\> Get-AzDiskAccess PrivateEndpointConnections : {} ProvisioningState : Succeeded @@ -104,7 +104,7 @@ Tags : {} This command gets the properties of all disk accesses under the subscription. -### Example 4 +### Example 4: Get all Disk Access using Wildcard Character ``` PS C:\> Get-AzDiskAccess -Name DiskAccessMicrosoft* @@ -129,7 +129,7 @@ Tags : {} This command gets the properties of all disk accesses under the subscription name starting with 'DiskAccessMicrosoft'. -### Example 5 +### Example 5: Get Disk Access using ResourceId. ``` PS C:\> Get-AzDiskAccess -ResourceId '/subscriptions/xxxxxxxxxxxxxxxxxxxxxxxxxx/resourceGroups/ResourceGroup01/providers/Microsoft.Compute/diskAccesses/DiskAccess01' diff --git a/src/Compute/Compute/help/Invoke-AzVmPatchAssessment.md b/src/Compute/Compute/help/Invoke-AzVmPatchAssessment.md new file mode 100644 index 000000000000..9aba98699c84 --- /dev/null +++ b/src/Compute/Compute/help/Invoke-AzVmPatchAssessment.md @@ -0,0 +1,177 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml +Module Name: Az.Compute +schema: 2.0.0 +--- + +# Invoke-AzVMPatchAssessment + +## SYNOPSIS +Assess patch state of a virtual machine. + +## SYNTAX + +### DefaultParameterSet (Default) +``` +Invoke-AzVMPatchAssessment [-ResourceGroupName] [-VMName] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceIDParameterSet +``` +Invoke-AzVMPatchAssessment [-ResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### InputObjectParameterSet +``` +Invoke-AzVMPatchAssessment [-VM] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +Assesses the patch status of a VM and reports all detected patches that are available for installation. + +## EXAMPLES + +### Example 1 +``` +PS C:\> Invoke-AzVmPatchAssessment -ResourceGroupName "myRG" -VMName "myVM" +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```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 +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Specifies the name of a resource group. + +```yaml +Type: System.String +Parameter Sets: DefaultParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Resource ID for your virtual machine. + +```yaml +Type: System.String +Parameter Sets: ResourceIDParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VM +PowerShell Virtual Machine Object + +```yaml +Type: Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine +Parameter Sets: InputObjectParameterSet +Aliases: VMProfile + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -VMName +Virtual Machine name + +```yaml +Type: System.String +Parameter Sets: DefaultParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachinePatchAssessmentResult + +## NOTES + +## RELATED LINKS diff --git a/src/Compute/Compute/help/Remove-AzDiskAccess.md b/src/Compute/Compute/help/Remove-AzDiskAccess.md index 4e84b77f066c..cdb2f2e00376 100644 --- a/src/Compute/Compute/help/Remove-AzDiskAccess.md +++ b/src/Compute/Compute/help/Remove-AzDiskAccess.md @@ -35,14 +35,14 @@ The **Remove-AzDiskAccess** cmdlet removes a disk access resource. ## EXAMPLES -### Example 1 +### Example 1: Remove Disk Access using Default Parameter Set ``` PS C:\> Remove-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01" ``` This command removes the disk access named "DiskAccess01" in resource group "ResourceGroup01" -### Example 2 +### Example 2: Remove Disk Access using Resource ID ``` PS C:\> $myDiskAccess = Get-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01" PS C:\> Remove-AzDiskAccess -ResourceId $myDiskAccess.id @@ -50,7 +50,7 @@ PS C:\> Remove-AzDiskAccess -ResourceId $myDiskAccess.id This command removes the disk access by Resource ID -### Example 3 +### Example 3: Remove Disk Access using Input Object ``` PS C:\> $myDiskAccess = Get-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01" PS C:\> Remove-AzDiskAccess -InputObject $myDiskAccess @@ -58,7 +58,7 @@ PS C:\> Remove-AzDiskAccess -InputObject $myDiskAccess This command removes the disk access by InputObject -### Example 4 +### Example 4: Remove Disk Access by piping Input Object ``` PS C:\> Get-AzDiskAccess -ResourceGroupName "ResourceGroup01" -Name "DiskAccess01" | Remove-AzDiskAccess ``` diff --git a/src/Kusto/Az.Kusto.csproj b/src/Kusto/Az.Kusto.csproj index d3f9df1d2337..785d1ede5822 100644 --- a/src/Kusto/Az.Kusto.csproj +++ b/src/Kusto/Az.Kusto.csproj @@ -1,7 +1,7 @@ - + Kusto - \ No newline at end of file + diff --git a/src/Kusto/Az.Kusto.format.ps1xml b/src/Kusto/Az.Kusto.format.ps1xml index 8a340649f3da..edd77ca54d1a 100644 --- a/src/Kusto/Az.Kusto.format.ps1xml +++ b/src/Kusto/Az.Kusto.format.ps1xml @@ -66,9 +66,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfiguration + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfiguration - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfiguration + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfiguration @@ -100,9 +100,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationProperties @@ -146,9 +146,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureCapacity + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureCapacity - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureCapacity + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureCapacity @@ -186,9 +186,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureResourceSku + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureResourceSku - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureResourceSku + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureResourceSku @@ -208,9 +208,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku @@ -242,9 +242,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameRequest - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameRequest @@ -270,9 +270,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameResult - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameResult @@ -310,9 +310,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBody + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBody - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBody + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBody @@ -344,9 +344,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Cluster + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Cluster - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Cluster + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Cluster @@ -384,9 +384,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterCheckNameRequest - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterCheckNameRequest @@ -412,9 +412,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignment + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignment - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignment + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignment @@ -440,9 +440,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignmentCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignmentCheckNameRequest - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignmentCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignmentCheckNameRequest @@ -468,9 +468,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalProperties @@ -526,9 +526,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties @@ -538,6 +538,9 @@ + + + @@ -566,6 +569,9 @@ EnableDiskEncryption + + EnableDoubleEncryption + EnablePurge @@ -590,9 +596,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdate + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdate - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdate + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdate @@ -624,9 +630,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdateTags + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdateTags - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdateTags + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdateTags @@ -646,9 +652,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties @@ -674,9 +680,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database @@ -714,9 +720,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipal - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipal @@ -772,9 +778,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignment + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignment - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignment + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignment @@ -800,9 +806,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignmentCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignmentCheckNameRequest - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignmentCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignmentCheckNameRequest @@ -828,9 +834,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalProperties @@ -886,9 +892,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics @@ -908,9 +914,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection @@ -948,9 +954,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionCheckNameRequest - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionCheckNameRequest + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionCheckNameRequest @@ -976,9 +982,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation @@ -998,9 +1004,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidationResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidationResult - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidationResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidationResult @@ -1020,9 +1026,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DiagnoseVirtualNetworkResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DiagnoseVirtualNetworkResult - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DiagnoseVirtualNetworkResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DiagnoseVirtualNetworkResult @@ -1042,12 +1048,15 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridConnectionProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridConnectionProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridConnectionProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridConnectionProperties + + + @@ -1057,6 +1066,9 @@ + + + @@ -1070,6 +1082,9 @@ + + BlobStorageEventType + ConsumerGroup @@ -1079,6 +1094,9 @@ EventHubResourceId + + IgnoreFirstRecord + MappingRuleName @@ -1094,9 +1112,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection @@ -1134,9 +1152,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubConnectionProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubConnectionProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubConnectionProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubConnectionProperties @@ -1192,9 +1210,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection @@ -1232,9 +1250,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseDefinition + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseDefinition - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseDefinition + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseDefinition @@ -1266,9 +1284,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity @@ -1300,9 +1318,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubConnectionProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubConnectionProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubConnectionProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubConnectionProperties @@ -1358,9 +1376,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection @@ -1398,9 +1416,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultProperties @@ -1432,9 +1450,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtension + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtension - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtension + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtension @@ -1454,9 +1472,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Operation + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Operation - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Operation + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Operation @@ -1482,9 +1500,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationDisplay + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationDisplay - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationDisplay + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationDisplay @@ -1522,9 +1540,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationListResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationListResult - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationListResult + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationListResult @@ -1544,9 +1562,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscale + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscale - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscale + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscale @@ -1584,9 +1602,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabase + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabase - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabase + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabase @@ -1624,9 +1642,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabaseProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabaseProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabaseProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabaseProperties @@ -1664,9 +1682,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabase + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabase - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabase + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabase @@ -1704,9 +1722,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabaseProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabaseProperties - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabaseProperties + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabaseProperties @@ -1732,9 +1750,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescription + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescription - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescription + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescription @@ -1772,9 +1790,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuLocationInfoItem + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuLocationInfoItem - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuLocationInfoItem + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuLocationInfoItem @@ -1800,9 +1818,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenant + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenant - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenant + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenant @@ -1822,9 +1840,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfiguration + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfiguration - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfiguration + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfiguration diff --git a/src/Kusto/Az.Kusto.psd1 b/src/Kusto/Az.Kusto.psd1 index 62259ebbfff1..8bb7c1a9135a 100644 --- a/src/Kusto/Az.Kusto.psd1 +++ b/src/Kusto/Az.Kusto.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/7/2020 +# Generated on: 8/12/2020 # @{ @@ -18,7 +18,7 @@ ModuleVersion = '0.1.4' CompatiblePSEditions = 'Core', 'Desktop' # ID used to uniquely identify this module -GUID = 'af390c08-e984-4145-81c9-effe6fb4c9f6' +GUID = '18c61846-f6f0-425e-ba4b-5cf903e2bdd8' # Author of this module Author = 'Microsoft Corporation' @@ -45,13 +45,13 @@ PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '' +# ClrVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.9.2'; }) +# RequiredModules = @() # Assemblies that must be loaded prior to importing this module RequiredAssemblies = './bin/Az.Kusto.private.dll' @@ -135,7 +135,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Supported new cmdlets' + # ReleaseNotes = '' # Prerelease string of this module # Prerelease = '' diff --git a/src/Kusto/Az.Kusto.psm1 b/src/Kusto/Az.Kusto.psm1 index 34eb7f270ec0..d015fd467159 100644 --- a/src/Kusto/Az.Kusto.psm1 +++ b/src/Kusto/Az.Kusto.psm1 @@ -24,17 +24,17 @@ } } if(-not $accountsModule) { - $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.7.4' } | Measure-Object).Count -gt 0 + $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.8.1' } | Measure-Object).Count -gt 0 if($hasAdequateVersion) { - $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.7.4 -Scope Global -PassThru + $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.8.1 -Scope Global -PassThru } } } if(-not $accountsModule) { - Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop - } elseif (($accountsModule.Version -lt [System.Version]'1.7.4') -and (-not $localAccounts)) { - Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop + } elseif (($accountsModule.Version -lt [System.Version]'1.8.1') -and (-not $localAccounts)) { + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop } Write-Information "Loaded Module '$($accountsModule.Name)'" diff --git a/src/Kusto/ChangeLog.md b/src/Kusto/ChangeLog.md index 27561a3abf43..aca7b9d0cb2c 100644 --- a/src/Kusto/ChangeLog.md +++ b/src/Kusto/ChangeLog.md @@ -1,9 +1,9 @@ ## Upcoming Release +* Updated API version to 2020-06-14; added new properties to data connection and cluster ## Version 0.1.4 * Supported new cmdlets diff --git a/src/Kusto/Kusto.sln b/src/Kusto/Kusto.sln index 44330ee22747..0e8bd91aee49 100644 --- a/src/Kusto/Kusto.sln +++ b/src/Kusto/Kusto.sln @@ -1,96 +1,48 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 -VisualStudioVersion = 16.0.30011.22 +VisualStudioVersion = 16.0.29709.97 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{62843FE6-7575-4D88-B989-7DF7EEC0BC01}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{3E016018-D65D-4336-9F64-17DA97783AD0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{442C609B-A431-4A71-B289-08F0B63C83E5}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Az.Kusto", "Az.Kusto.csproj", "{8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Az.Kusto", "Az.Kusto.csproj", "{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU - Debug|ARM = Debug|ARM - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU - Release|ARM = Release|ARM - Release|x64 = Release|x64 - Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|ARM.ActiveCfg = Debug|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|ARM.Build.0 = Debug|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|x64.ActiveCfg = Debug|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|x64.Build.0 = Debug|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|x86.ActiveCfg = Debug|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|x86.Build.0 = Debug|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|ARM.ActiveCfg = Release|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|ARM.Build.0 = Release|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|x64.ActiveCfg = Release|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|x64.Build.0 = Release|Any CPU - {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|x86.ActiveCfg = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|ARM.ActiveCfg = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|ARM.Build.0 = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|x64.ActiveCfg = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|x64.Build.0 = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|x86.ActiveCfg = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|x86.Build.0 = Debug|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.Build.0 = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|ARM.ActiveCfg = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|ARM.Build.0 = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|x64.ActiveCfg = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|x64.Build.0 = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|x86.ActiveCfg = Release|Any CPU - {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|x86.Build.0 = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|ARM.ActiveCfg = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|ARM.Build.0 = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|x64.ActiveCfg = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|x64.Build.0 = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|x86.ActiveCfg = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|x86.Build.0 = Debug|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.Build.0 = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|ARM.ActiveCfg = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|ARM.Build.0 = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|x64.ActiveCfg = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|x64.Build.0 = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|x86.ActiveCfg = Release|Any CPU - {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|x86.Build.0 = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|ARM.ActiveCfg = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|ARM.Build.0 = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|x64.ActiveCfg = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|x64.Build.0 = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|x86.ActiveCfg = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Debug|x86.Build.0 = Debug|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|Any CPU.Build.0 = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|ARM.ActiveCfg = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|ARM.Build.0 = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|x64.ActiveCfg = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|x64.Build.0 = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|x86.ActiveCfg = Release|Any CPU - {8C00D3B8-1385-4EE9-AB1C-08EBB796CF73}.Release|x86.Build.0 = Release|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.Build.0 = Debug|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.ActiveCfg = Release|Any CPU + {62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.Build.0 = Release|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.Build.0 = Release|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.Build.0 = Release|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {9B0BAD10-73A2-4F3C-A080-BA73684E7999} + SolutionGuid = {F9B3D96E-9680-40BE-A917-02EE655D6030} EndGlobalSection EndGlobal diff --git a/src/Kusto/Properties/AssemblyInfo.cs b/src/Kusto/Properties/AssemblyInfo.cs index c143e19a3cc7..e781a4d61601 100644 --- a/src/Kusto/Properties/AssemblyInfo.cs +++ b/src/Kusto/Properties/AssemblyInfo.cs @@ -23,6 +23,6 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] -[assembly: Guid("d2a8f744-8dcb-4a13-ba80-eb181ff365ad")] -[assembly: AssemblyVersion("0.1.4")] -[assembly: AssemblyFileVersion("0.1.4")] +[assembly: Guid("70ba42b8-c483-4bba-a77d-1df1c8c20641")] +[assembly: AssemblyVersion("0.1.0")] +[assembly: AssemblyFileVersion("0.1.0")] diff --git a/src/Kusto/check-dependencies.ps1 b/src/Kusto/check-dependencies.ps1 index 5cd7ab5c808f..513c52ca2fb5 100644 --- a/src/Kusto/check-dependencies.ps1 +++ b/src/Kusto/check-dependencies.ps1 @@ -21,13 +21,15 @@ if(-not $Isolated) { return } -function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum) { +function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) { if($predicate) { $module = Get-Module -ListAvailable -Name $moduleName if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) { $null = New-Item -ItemType Directory -Force -Path $path Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..." - if($versionMinimum) { + if ($requiredVersion) { + Find-Module -Name $moduleName -RequiredVersion $requiredVersion -Repository PSGallery | Save-Module -Path $path + }elseif($versionMinimum) { Find-Module -Name $moduleName -MinimumVersion $versionMinimum -Repository PSGallery | Save-Module -Path $path } else { Find-Module -Name $moduleName -Repository PSGallery | Save-Module -Path $path @@ -44,8 +46,8 @@ if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } -DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.7.4' -DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -versionMinimum '' +DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.8.1' +DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1' $tools = Join-Path $PSScriptRoot 'tools' $resourceDir = Join-Path $tools 'Resources' diff --git a/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 b/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 index 313a97423358..cc560f78fac6 100644 --- a/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 +++ b/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 @@ -19,8 +19,8 @@ Checks that the data connection parameters are valid. .Description Checks that the data connection parameters are valid. .Example -PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection -Property @{Location=$location; Kind=$kind; EventHubResourceId=$eventHubResourceId; DataFormat=$dataFormat; ConsumerGroup='$Default'; Compression= "None"; TableName = $tableName; MappingRuleName = $tableMappingName} -PS C:\> $dataConnectionValidation = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation -Property @{DataConnectionName=$dataConnectionName; Property=$dataConnectionProperties} +PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection -Property @{Location=$location; Kind=$kind; EventHubResourceId=$eventHubResourceId; DataFormat=$dataFormat; ConsumerGroup='$Default'; Compression= "None"; TableName = $tableName; MappingRuleName = $tableMappingName} +PS C:\> $dataConnectionValidation = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation -Property @{DataConnectionName=$dataConnectionName; Property=$dataConnectionProperties} PS C:\> Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Parameter $dataConnectionValidation ErrorMessage @@ -31,7 +31,7 @@ event hub resource id and consumer group tuple provided are already used https://docs.microsoft.com/en-us/powershell/module/az.kusto/invoke-azkustodataconnectionvalidation #> function Invoke-AzKustoDataConnectionValidation { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult])] [CmdletBinding(DefaultParameterSetName = 'DataExpandedEventHub', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'DataExpandedEventHub', Mandatory)] @@ -105,12 +105,21 @@ function Invoke-AzKustoDataConnectionValidation { # The event/iot hub consumer group. ${ConsumerGroup}, - [Parameter(ParameterSetName = 'DataExpandedEventHub')] - [Parameter(ParameterSetName = 'DataExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataExpandedIotHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedIotHub')] + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType] + # The name of blob storage event type to process. + ${BlobStorageEventType}, + + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If set to true, indicates that ingestion should ignore the first record of every file. + ${IgnoreFirstRecord}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat] # The data format of the message. Optionally the data format can be added to each message. @@ -131,12 +140,7 @@ function Invoke-AzKustoDataConnectionValidation { # The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. ${MappingRuleName}, - [Parameter(ParameterSetName = 'DataExpandedEventHub')] - [Parameter(ParameterSetName = 'DataExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataExpandedIotHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedIotHub')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] # The table where the data should be ingested. Optionally the table information can be added to each message. @@ -226,13 +230,13 @@ function Invoke-AzKustoDataConnectionValidation { process { try { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation]::new() $Parameter.DataConnectionName = $PSBoundParameters['DataConnectionName'] $null = $PSBoundParameters.Remove('DataConnectionName') if ($PSBoundParameters['Kind'] -eq 'EventHub') { - $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection]::new() + $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection]::new() $Parameter.Property.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') @@ -248,16 +252,26 @@ function Invoke-AzKustoDataConnectionValidation { } } elseif ($PSBoundParameters['Kind'] -eq 'EventGrid') { - $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection]::new() + $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection]::new() $Parameter.Property.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') $Parameter.Property.StorageAccountResourceId = $PSBoundParameters['StorageAccountResourceId'] $null = $PSBoundParameters.Remove('StorageAccountResourceId') + + if ($PSBoundParameters.ContainsKey('BlobStorageEventType')) { + $Parameter.BlobStorageEventType = $PSBoundParameters['BlobStorageEventType'] + $null = $PSBoundParameters.Remove('BlobStorageEventType') + } + + if ($PSBoundParameters.ContainsKey('IgnoreFirstRecord')) { + $Parameter.IgnoreFirstRecord = $PSBoundParameters['IgnoreFirstRecord'] + $null = $PSBoundParameters.Remove('IgnoreFirstRecord') + } } else { - $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection]::new() + $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection]::new() $Parameter.Property.IotHubResourceId = $PSBoundParameters['IotHubResourceId'] $null = $PSBoundParameters.Remove('IotHubResourceId') diff --git a/src/Kusto/custom/New-AzKustoDataConnection.ps1 b/src/Kusto/custom/New-AzKustoDataConnection.ps1 index e4b2ed08cfb4..c52d4b31f4a9 100644 --- a/src/Kusto/custom/New-AzKustoDataConnection.ps1 +++ b/src/Kusto/custom/New-AzKustoDataConnection.ps1 @@ -19,7 +19,7 @@ Creates or updates a data connection. .Description Creates or updates a data connection. .Example -PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping"} +PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping"} PS C:\> New-AzKustoDataConnection -ResourceGroupName "testrg" -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "mykustodataconnection" -Parameter $dataConnectionProperties Kind Location Name Type @@ -30,7 +30,7 @@ EventHub East US testnewkustocluster/mykustodatabase/mykustodataconnection Micr https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustodataconnection #> function New-AzKustoDataConnection { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection])] [CmdletBinding(DefaultParameterSetName = 'CreateExpandedEventHub', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory)] @@ -86,9 +86,21 @@ function New-AzKustoDataConnection { # The event/iot hub consumer group. ${ConsumerGroup}, - [Parameter(ParameterSetName = 'CreateExpandedEventHub')] - [Parameter(ParameterSetName = 'CreateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'CreateExpandedIotHub')] + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType] + # The name of blob storage event type to process. + ${BlobStorageEventType}, + + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If set to true, indicates that ingestion should ignore the first record of every file. + ${IgnoreFirstRecord}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat] # The data format of the message. Optionally the data format can be added to each message. @@ -107,9 +119,7 @@ function New-AzKustoDataConnection { # The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. ${MappingRuleName}, - [Parameter(ParameterSetName = 'CreateExpandedEventHub')] - [Parameter(ParameterSetName = 'CreateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'CreateExpandedIotHub')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] # The table where the data should be ingested. Optionally the table information can be added to each message. @@ -208,7 +218,7 @@ function New-AzKustoDataConnection { process { try { if ($PSBoundParameters['Kind'] -eq 'EventHub') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') @@ -224,16 +234,26 @@ function New-AzKustoDataConnection { } } elseif ($PSBoundParameters['Kind'] -eq 'EventGrid') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') $Parameter.StorageAccountResourceId = $PSBoundParameters['StorageAccountResourceId'] $null = $PSBoundParameters.Remove('StorageAccountResourceId') + + if ($PSBoundParameters.ContainsKey('BlobStorageEventType')) { + $Parameter.BlobStorageEventType = $PSBoundParameters['BlobStorageEventType'] + $null = $PSBoundParameters.Remove('BlobStorageEventType') + } + + if ($PSBoundParameters.ContainsKey('IgnoreFirstRecord')) { + $Parameter.IgnoreFirstRecord = $PSBoundParameters['IgnoreFirstRecord'] + $null = $PSBoundParameters.Remove('IgnoreFirstRecord') + } } else { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection]::new() $Parameter.IotHubResourceId = $PSBoundParameters['IotHubResourceId'] $null = $PSBoundParameters.Remove('IotHubResourceId') diff --git a/src/Kusto/custom/New-AzKustoDatabase.ps1 b/src/Kusto/custom/New-AzKustoDatabase.ps1 index e1630d783718..6ddfbb02d91b 100644 --- a/src/Kusto/custom/New-AzKustoDatabase.ps1 +++ b/src/Kusto/custom/New-AzKustoDatabase.ps1 @@ -29,7 +29,7 @@ ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/ https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustodatabase #> function New-AzKustoDatabase { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase])] [CmdletBinding(PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory)] @@ -146,7 +146,7 @@ function New-AzKustoDatabase { process { try { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabase]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabase]::new() $Parameter.Kind = $PSBoundParameters['Kind'] $null = $PSBoundParameters.Remove('Kind') diff --git a/src/Kusto/custom/Update-AzKustoDataConnection.ps1 b/src/Kusto/custom/Update-AzKustoDataConnection.ps1 index 92a53fd6a579..06b3d9e19aad 100644 --- a/src/Kusto/custom/Update-AzKustoDataConnection.ps1 +++ b/src/Kusto/custom/Update-AzKustoDataConnection.ps1 @@ -19,7 +19,7 @@ Updates a data connection. .Description Updates a data connection. .Example -PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping1"} +PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping1"} PS C:\> Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "mykustodataconnection" -Parameter $dataConnectionProperties Kind Location Name Type @@ -30,7 +30,7 @@ EventHub East US testnewkustocluster/mykustodatabase/mykustodataconnection Micr https://docs.microsoft.com/en-us/powershell/module/az.kusto/update-azkustodataconnection #> function Update-AzKustoDataConnection { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection])] [CmdletBinding(DefaultParameterSetName = 'UpdateExpandedEventHub', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'UpdateExpandedEventHub', Mandatory)] @@ -107,12 +107,21 @@ function Update-AzKustoDataConnection { # The event/iot hub consumer group. ${ConsumerGroup}, - [Parameter(ParameterSetName = 'UpdateExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateExpandedIotHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedIotHub')] + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType] + # The name of blob storage event type to process. + ${BlobStorageEventType}, + + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If set to true, indicates that ingestion should ignore the first record of every file. + ${IgnoreFirstRecord}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat] # The data format of the message. Optionally the data format can be added to each message. @@ -133,12 +142,7 @@ function Update-AzKustoDataConnection { # The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. ${MappingRuleName}, - [Parameter(ParameterSetName = 'UpdateExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateExpandedIotHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedIotHub')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] # The table where the data should be ingested. Optionally the table information can be added to each message. @@ -241,7 +245,7 @@ function Update-AzKustoDataConnection { process { try { if ($PSBoundParameters['Kind'] -eq 'EventHub') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') @@ -257,16 +261,26 @@ function Update-AzKustoDataConnection { } } elseif ($PSBoundParameters['Kind'] -eq 'EventGrid') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') $Parameter.StorageAccountResourceId = $PSBoundParameters['StorageAccountResourceId'] $null = $PSBoundParameters.Remove('StorageAccountResourceId') + + if ($PSBoundParameters.ContainsKey('BlobStorageEventType')) { + $Parameter.BlobStorageEventType = $PSBoundParameters['BlobStorageEventType'] + $null = $PSBoundParameters.Remove('BlobStorageEventType') + } + + if ($PSBoundParameters.ContainsKey('IgnoreFirstRecord')) { + $Parameter.IgnoreFirstRecord = $PSBoundParameters['IgnoreFirstRecord'] + $null = $PSBoundParameters.Remove('IgnoreFirstRecord') + } } else { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection]::new() $Parameter.IotHubResourceId = $PSBoundParameters['IotHubResourceId'] $null = $PSBoundParameters.Remove('IotHubResourceId') diff --git a/src/Kusto/custom/Update-AzKustoDatabase.ps1 b/src/Kusto/custom/Update-AzKustoDatabase.ps1 index 97d748d8addd..8416027c3b22 100644 --- a/src/Kusto/custom/Update-AzKustoDatabase.ps1 +++ b/src/Kusto/custom/Update-AzKustoDatabase.ps1 @@ -31,7 +31,7 @@ ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/ https://docs.microsoft.com/en-us/powershell/module/az.kusto/update-azkustodatabase #> function Update-AzKustoDatabase { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase])] [CmdletBinding(DefaultParameterSetName = 'UpdateExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory)] @@ -157,10 +157,10 @@ function Update-AzKustoDatabase { process { try { if ($PSBoundParameters['Kind'] -eq 'ReadWrite') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabase]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabase]::new() } else { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabase]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabase]::new() } $Parameter.Kind = $PSBoundParameters['Kind'] diff --git a/src/Kusto/examples/New-AzKustoCluster.md b/src/Kusto/examples/New-AzKustoCluster.md index 12d5d9504d32..bd3f126e0848 100644 --- a/src/Kusto/examples/New-AzKustoCluster.md +++ b/src/Kusto/examples/New-AzKustoCluster.md @@ -1,6 +1,6 @@ ### Example 1: Create a new Kusto cluster ```powershell -PS C:\> New-AzKustoCluster -ResourceGroupName testrg -Name testnewkustocluster -Location 'East US' -SkuName Standard_D11_v2 -SkuTier Standard +PS C:\> New-AzKustoCluster -ResourceGroupName testrg -Name testnewkustocluster -Location 'East US' -SkuName Standard_D11_v2 -SkuTier Standard -EnableDoubleEncryption true Location Name Type Zone -------- ---- ---- ---- diff --git a/src/Kusto/examples/New-AzKustoDataConnection.md b/src/Kusto/examples/New-AzKustoDataConnection.md index e2acfb84be6c..22eddcc2ccea 100644 --- a/src/Kusto/examples/New-AzKustoDataConnection.md +++ b/src/Kusto/examples/New-AzKustoDataConnection.md @@ -11,7 +11,7 @@ The above command creates a new EventHub data connection named "myeventhubdc" fo ### Example 2: Create a new EventGrid data connection ```powershell -PS C:\> New-AzKustoDataConnection -ResourceGroupName "testrg" -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "myeventgriddc" -Location="East US" -Kind "EventGrid" -EventHubResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub" -StorageAccountResourceId $storageAccountResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.Storage/storageAccounts/mystorage" -DataFormat "JSON" -ConsumerGroup '$Default' -TableName "Events" -MappingRuleName "EventsMapping" +PS C:\> New-AzKustoDataConnection -ResourceGroupName "testrg" -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "myeventgriddc" -Location="East US" -Kind "EventGrid" -EventHubResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub" -StorageAccountResourceId $storageAccountResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.Storage/storageAccounts/mystorage" -DataFormat "JSON" -ConsumerGroup '$Default' -TableName "Events" -MappingRuleName "EventsMapping" -IgnoreFirstRecord "false" -BlobStorageEventType "Microsoft.Storage.BlobRenamed" Kind Location Name Type ---- -------- ---- ---- diff --git a/src/Kusto/exports/Add-AzKustoClusterLanguageExtension.ps1 b/src/Kusto/exports/Add-AzKustoClusterLanguageExtension.ps1 index 8b435204a6c0..b04ad45e6215 100644 --- a/src/Kusto/exports/Add-AzKustoClusterLanguageExtension.ps1 +++ b/src/Kusto/exports/Add-AzKustoClusterLanguageExtension.ps1 @@ -79,7 +79,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, diff --git a/src/Kusto/exports/Add-AzKustoDatabasePrincipal.ps1 b/src/Kusto/exports/Add-AzKustoDatabasePrincipal.ps1 index ff3943a59ff9..0dc5c4c4ca2a 100644 --- a/src/Kusto/exports/Add-AzKustoDatabasePrincipal.ps1 +++ b/src/Kusto/exports/Add-AzKustoDatabasePrincipal.ps1 @@ -29,7 +29,7 @@ AppId Email Fqn .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal .Notes COMPLEX PARAMETER PROPERTIES @@ -57,7 +57,7 @@ VALUE : The list of Kusto database principals. https://docs.microsoft.com/en-us/powershell/module/az.kusto/add-azkustodatabaseprincipal #> function Add-AzKustoDatabasePrincipal { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal])] [CmdletBinding(DefaultParameterSetName='AddExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='AddExpanded', Mandatory)] @@ -95,7 +95,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]] # The list of Kusto database principals. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, diff --git a/src/Kusto/exports/Get-AzKustoAttachedDatabaseConfiguration.ps1 b/src/Kusto/exports/Get-AzKustoAttachedDatabaseConfiguration.ps1 index 762b09dcf940..0656d73d64a8 100644 --- a/src/Kusto/exports/Get-AzKustoAttachedDatabaseConfiguration.ps1 +++ b/src/Kusto/exports/Get-AzKustoAttachedDatabaseConfiguration.ps1 @@ -34,7 +34,7 @@ testnewkustoclusterf/myfollowerconfiguration Microsoft.Kusto/Clusters/AttachedDa .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoattacheddatabaseconfiguration #> function Get-AzKustoAttachedDatabaseConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoCluster.ps1 b/src/Kusto/exports/Get-AzKustoCluster.ps1 index 6f100fda45ea..68fece35e519 100644 --- a/src/Kusto/exports/Get-AzKustoCluster.ps1 +++ b/src/Kusto/exports/Get-AzKustoCluster.ps1 @@ -35,7 +35,7 @@ East US testnewkustocluster Microsoft.Kusto/Clusters .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster .Notes COMPLEX PARAMETER PROPERTIES @@ -55,7 +55,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustocluster #> function Get-AzKustoCluster { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster])] [CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoClusterFollowerDatabase.ps1 b/src/Kusto/exports/Get-AzKustoClusterFollowerDatabase.ps1 index 7825d52156ff..4c4242953b8d 100644 --- a/src/Kusto/exports/Get-AzKustoClusterFollowerDatabase.ps1 +++ b/src/Kusto/exports/Get-AzKustoClusterFollowerDatabase.ps1 @@ -26,12 +26,12 @@ AttachedDatabaseConfigurationName ClusterResourceId myfollowerconfiguration /subscriptions/xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx/resourceGroups/testrg/providers/Microsoft.Kusto/Clusters/testnewkustoclusterf mykustodatabase .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclusterfollowerdatabase #> function Get-AzKustoClusterFollowerDatabase { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoClusterLanguageExtension.ps1 b/src/Kusto/exports/Get-AzKustoClusterLanguageExtension.ps1 index 050bbc13c01d..a532d9088012 100644 --- a/src/Kusto/exports/Get-AzKustoClusterLanguageExtension.ps1 +++ b/src/Kusto/exports/Get-AzKustoClusterLanguageExtension.ps1 @@ -27,12 +27,12 @@ R PYTHON .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclusterlanguageextension #> function Get-AzKustoClusterLanguageExtension { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoClusterPrincipalAssignment.ps1 b/src/Kusto/exports/Get-AzKustoClusterPrincipalAssignment.ps1 index 397df024173d..d2e11a5d46e9 100644 --- a/src/Kusto/exports/Get-AzKustoClusterPrincipalAssignment.ps1 +++ b/src/Kusto/exports/Get-AzKustoClusterPrincipalAssignment.ps1 @@ -34,7 +34,7 @@ testnewkustocluster/kustoprincipal1 Microsoft.Kusto/Clusters/PrincipalAssignment .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclusterprincipalassignment #> function Get-AzKustoClusterPrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoClusterSku.ps1 b/src/Kusto/exports/Get-AzKustoClusterSku.ps1 index 6eedf21317d4..00ab0d60b628 100644 --- a/src/Kusto/exports/Get-AzKustoClusterSku.ps1 +++ b/src/Kusto/exports/Get-AzKustoClusterSku.ps1 @@ -69,14 +69,14 @@ Microsoft.Kusto/clusters ... .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclustersku #> function Get-AzKustoClusterSku { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription], [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription], [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] diff --git a/src/Kusto/exports/Get-AzKustoDataConnection.ps1 b/src/Kusto/exports/Get-AzKustoDataConnection.ps1 index f896014b65f4..011079575ab5 100644 --- a/src/Kusto/exports/Get-AzKustoDataConnection.ps1 +++ b/src/Kusto/exports/Get-AzKustoDataConnection.ps1 @@ -34,7 +34,7 @@ EventHub East US testnewkustocluster/mykustodatabase/mykustodataconnection Micr .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodataconnection #> function Get-AzKustoDataConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoDatabase.ps1 b/src/Kusto/exports/Get-AzKustoDatabase.ps1 index 33d0fd9db439..b817f69dddb4 100644 --- a/src/Kusto/exports/Get-AzKustoDatabase.ps1 +++ b/src/Kusto/exports/Get-AzKustoDatabase.ps1 @@ -35,7 +35,7 @@ ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/ .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -55,7 +55,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodatabase #> function Get-AzKustoDatabase { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoDatabasePrincipal.ps1 b/src/Kusto/exports/Get-AzKustoDatabasePrincipal.ps1 index 36b41bed28d8..00799a3a610b 100644 --- a/src/Kusto/exports/Get-AzKustoDatabasePrincipal.ps1 +++ b/src/Kusto/exports/Get-AzKustoDatabasePrincipal.ps1 @@ -27,12 +27,12 @@ AppId Email Fqn otheruser@microsoft.com aaduser=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx;xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx Other User Admin Microsoft User .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodatabaseprincipal #> function Get-AzKustoDatabasePrincipal { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/Kusto/exports/Get-AzKustoDatabasePrincipalAssignment.ps1 b/src/Kusto/exports/Get-AzKustoDatabasePrincipalAssignment.ps1 index 7e6063278ed6..19c412fa25a4 100644 --- a/src/Kusto/exports/Get-AzKustoDatabasePrincipalAssignment.ps1 +++ b/src/Kusto/exports/Get-AzKustoDatabasePrincipalAssignment.ps1 @@ -36,7 +36,7 @@ testnewkustocluster/mykustodatabase/kustoprincipal1 Microsoft.Kusto/Clusters/Dat .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment .Notes COMPLEX PARAMETER PROPERTIES @@ -56,7 +56,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodatabaseprincipalassignment #> function Get-AzKustoDatabasePrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/Kusto/exports/Invoke-AzKustoDataConnectionValidation.ps1 b/src/Kusto/exports/Invoke-AzKustoDataConnectionValidation.ps1 index 932e9a7dd48c..d6fc04599bc7 100644 --- a/src/Kusto/exports/Invoke-AzKustoDataConnectionValidation.ps1 +++ b/src/Kusto/exports/Invoke-AzKustoDataConnectionValidation.ps1 @@ -61,7 +61,7 @@ event hub resource id and consumer group tuple provided are already used .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult .Notes COMPLEX PARAMETER PROPERTIES @@ -81,7 +81,7 @@ INPUTOBJECT : Identity Parameter 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)] @@ -152,20 +152,6 @@ param( # Resource location. ${Location}, - [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. - ${DataFormat}, - - [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. - ${TableName}, - [Parameter(ParameterSetName='DataExpandedEventHub', Mandatory)] [Parameter(ParameterSetName='DataExpandedEventGrid', Mandatory)] [Parameter(ParameterSetName='DataViaIdentityExpandedEventGrid', Mandatory)] @@ -175,6 +161,13 @@ param( # The resource ID of the event hub to be used to create a data connection / event grid is configured to send events. ${EventHubResourceId}, + [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. + ${DataFormat}, + [Parameter(ParameterSetName='DataExpandedEventHub')] [Parameter(ParameterSetName='DataExpandedIotHub')] [Parameter(ParameterSetName='DataViaIdentityExpandedIotHub')] @@ -191,6 +184,13 @@ param( # Optionally the mapping information can be added to each message. ${MappingRuleName}, + [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. + ${TableName}, + [Parameter(ParameterSetName='DataExpandedEventHub')] [Parameter(ParameterSetName='DataViaIdentityExpandedEventHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -219,6 +219,20 @@ param( # The resource ID of the storage account where the data resides. ${StorageAccountResourceId}, + [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -281,6 +295,8 @@ begin { DataViaIdentityExpandedIotHub = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; DataViaIdentityExpandedEventGrid = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; DataViaIdentityExpandedEventHub = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; + UpdateViaIdentityExpandedEventGrid = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; + UpdateExpandedEventGrid = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; } if (('DataExpandedEventHub', 'DataExpandedIotHub', 'DataExpandedEventGrid') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id diff --git a/src/Kusto/exports/New-AzKustoAttachedDatabaseConfiguration.ps1 b/src/Kusto/exports/New-AzKustoAttachedDatabaseConfiguration.ps1 index d834b68e743c..2780a452de0f 100644 --- a/src/Kusto/exports/New-AzKustoAttachedDatabaseConfiguration.ps1 +++ b/src/Kusto/exports/New-AzKustoAttachedDatabaseConfiguration.ps1 @@ -26,12 +26,12 @@ Name Type testnewkustoclusterf/myfollowerconfiguration Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations East US .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustoattacheddatabaseconfiguration #> function New-AzKustoAttachedDatabaseConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/Kusto/exports/New-AzKustoCluster.ps1 b/src/Kusto/exports/New-AzKustoCluster.ps1 index 9ff9d0d7da09..cee8db5b6d35 100644 --- a/src/Kusto/exports/New-AzKustoCluster.ps1 +++ b/src/Kusto/exports/New-AzKustoCluster.ps1 @@ -19,14 +19,14 @@ Create or update a Kusto cluster. .Description Create or update a Kusto cluster. .Example -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 -------- ---- ---- ---- East US testnewkustocluster Microsoft.Kusto/Clusters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster .Notes COMPLEX PARAMETER PROPERTIES @@ -41,7 +41,7 @@ TRUSTEDEXTERNALTENANT : The cluster's external tenants https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustocluster #> function New-AzKustoCluster { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -91,6 +91,12 @@ param( # A boolean value that indicates if the cluster's disks are encrypted. ${EnableDiskEncryption}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # A boolean value that indicates if double encryption is enabled. + ${EnableDoubleEncryption}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.Management.Automation.SwitchParameter] @@ -112,7 +118,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities]))] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities]))] [System.Collections.Hashtable] # The list of user identities associated with the Kusto cluster. # The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. @@ -138,7 +144,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ${LanguageExtensionValue}, @@ -182,7 +188,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]] # The cluster's external tenants. # To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ${TrustedExternalTenant}, diff --git a/src/Kusto/exports/New-AzKustoClusterPrincipalAssignment.ps1 b/src/Kusto/exports/New-AzKustoClusterPrincipalAssignment.ps1 index 6b8b7ac48279..9e424c9667bd 100644 --- a/src/Kusto/exports/New-AzKustoClusterPrincipalAssignment.ps1 +++ b/src/Kusto/exports/New-AzKustoClusterPrincipalAssignment.ps1 @@ -26,12 +26,12 @@ Name Type testnewkustocluster/kustoprincipal1 Microsoft.Kusto/Clusters/PrincipalAssignments .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustoclusterprincipalassignment #> function New-AzKustoClusterPrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/Kusto/exports/New-AzKustoDataConnection.ps1 b/src/Kusto/exports/New-AzKustoDataConnection.ps1 index 56d459a87d9b..a8c0c4d77c93 100644 --- a/src/Kusto/exports/New-AzKustoDataConnection.ps1 +++ b/src/Kusto/exports/New-AzKustoDataConnection.ps1 @@ -25,7 +25,7 @@ Kind Location Name Type ---- -------- ---- ---- EventHub East US testnewkustocluster/mykustodatabase/myeventhubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Example -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 ---- -------- ---- ---- @@ -38,12 +38,12 @@ Kind Location Name Type IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Link 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)] @@ -98,20 +98,6 @@ param( # Resource location. ${Location}, - [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. - ${DataFormat}, - - [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. - ${TableName}, - [Parameter(ParameterSetName='CreateExpandedEventHub', Mandatory)] [Parameter(ParameterSetName='CreateExpandedEventGrid', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -119,6 +105,13 @@ param( # The resource ID of the event hub to be used to create a data connection / event grid is configured to send events. ${EventHubResourceId}, + [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. + ${DataFormat}, + [Parameter(ParameterSetName='CreateExpandedEventHub')] [Parameter(ParameterSetName='CreateExpandedIotHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -133,6 +126,13 @@ param( # Optionally the mapping information can be added to each message. ${MappingRuleName}, + [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. + ${TableName}, + [Parameter(ParameterSetName='CreateExpandedEventHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression] @@ -145,6 +145,20 @@ param( # The resource ID of the storage account where the data resides. ${StorageAccountResourceId}, + [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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(ParameterSetName='CreateExpandedIotHub', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] @@ -227,9 +241,11 @@ begin { $mapping = @{ CreateExpandedEventHub = 'Az.Kusto.custom\New-AzKustoDataConnection'; CreateExpandedEventGrid = 'Az.Kusto.custom\New-AzKustoDataConnection'; + UpdateViaIdentityExpandedEventGrid = 'Az.Kusto.custom\New-AzKustoDataConnection'; + UpdateExpandedEventGrid = 'Az.Kusto.custom\New-AzKustoDataConnection'; CreateExpandedIotHub = 'Az.Kusto.custom\New-AzKustoDataConnection'; } - if (('CreateExpandedEventHub', 'CreateExpandedEventGrid', 'CreateExpandedIotHub') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpandedEventHub', 'CreateExpandedEventGrid', 'UpdateViaIdentityExpandedEventGrid', 'UpdateExpandedEventGrid', 'CreateExpandedIotHub') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/Kusto/exports/New-AzKustoDatabase.ps1 b/src/Kusto/exports/New-AzKustoDatabase.ps1 index c2ccbc6db659..431850876082 100644 --- a/src/Kusto/exports/New-AzKustoDatabase.ps1 +++ b/src/Kusto/exports/New-AzKustoDatabase.ps1 @@ -26,12 +26,12 @@ Kind Location Name Type ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/Databases .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Link 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)] diff --git a/src/Kusto/exports/New-AzKustoDatabasePrincipalAssignment.ps1 b/src/Kusto/exports/New-AzKustoDatabasePrincipalAssignment.ps1 index b2b23319faff..9e120220ec1b 100644 --- a/src/Kusto/exports/New-AzKustoDatabasePrincipalAssignment.ps1 +++ b/src/Kusto/exports/New-AzKustoDatabasePrincipalAssignment.ps1 @@ -26,12 +26,12 @@ Name Type testnewkustocluster/mykustodatabase/kustoprincipal1 Microsoft.Kusto/Clusters/Databases/PrincipalAssignments .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustodatabaseprincipalassignment #> function New-AzKustoDatabasePrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/Kusto/exports/ProxyCmdletDefinitions.ps1 b/src/Kusto/exports/ProxyCmdletDefinitions.ps1 index a8155221183e..4e154e3593c6 100644 --- a/src/Kusto/exports/ProxyCmdletDefinitions.ps1 +++ b/src/Kusto/exports/ProxyCmdletDefinitions.ps1 @@ -79,7 +79,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, @@ -220,7 +220,7 @@ AppId Email Fqn .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal .Notes COMPLEX PARAMETER PROPERTIES @@ -248,7 +248,7 @@ VALUE : The list of Kusto database principals. https://docs.microsoft.com/en-us/powershell/module/az.kusto/add-azkustodatabaseprincipal #> function Add-AzKustoDatabasePrincipal { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal])] [CmdletBinding(DefaultParameterSetName='AddExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='AddExpanded', Mandatory)] @@ -286,7 +286,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]] # The list of Kusto database principals. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, @@ -414,7 +414,7 @@ testnewkustoclusterf/myfollowerconfiguration Microsoft.Kusto/Clusters/AttachedDa .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration .Notes COMPLEX PARAMETER PROPERTIES @@ -434,7 +434,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoattacheddatabaseconfiguration #> function Get-AzKustoAttachedDatabaseConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -590,12 +590,12 @@ AttachedDatabaseConfigurationName ClusterResourceId myfollowerconfiguration /subscriptions/xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx/resourceGroups/testrg/providers/Microsoft.Kusto/Clusters/testnewkustoclusterf mykustodatabase .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclusterfollowerdatabase #> function Get-AzKustoClusterFollowerDatabase { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -733,12 +733,12 @@ R PYTHON .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclusterlanguageextension #> function Get-AzKustoClusterLanguageExtension { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -883,7 +883,7 @@ testnewkustocluster/kustoprincipal1 Microsoft.Kusto/Clusters/PrincipalAssignment .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment .Notes COMPLEX PARAMETER PROPERTIES @@ -903,7 +903,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclusterprincipalassignment #> function Get-AzKustoClusterPrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1101,14 +1101,14 @@ Microsoft.Kusto/clusters ... .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustoclustersku #> function Get-AzKustoClusterSku { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription], [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription], [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] @@ -1255,7 +1255,7 @@ East US testnewkustocluster Microsoft.Kusto/Clusters .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster .Notes COMPLEX PARAMETER PROPERTIES @@ -1275,7 +1275,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustocluster #> function Get-AzKustoCluster { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster])] [CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1436,7 +1436,7 @@ testnewkustocluster/mykustodatabase/kustoprincipal1 Microsoft.Kusto/Clusters/Dat .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment .Notes COMPLEX PARAMETER PROPERTIES @@ -1456,7 +1456,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodatabaseprincipalassignment #> function Get-AzKustoDatabasePrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1619,12 +1619,12 @@ AppId Email Fqn otheruser@microsoft.com aaduser=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx;xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx Other User Admin Microsoft User .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodatabaseprincipal #> function Get-AzKustoDatabasePrincipal { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -1776,7 +1776,7 @@ ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/ .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -1796,7 +1796,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodatabase #> function Get-AzKustoDatabase { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1960,7 +1960,7 @@ EventHub East US testnewkustocluster/mykustodatabase/mykustodataconnection Micr .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -1980,7 +1980,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustodataconnection #> function Get-AzKustoDataConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -2513,12 +2513,12 @@ Name Type testnewkustoclusterf/myfollowerconfiguration Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations East US .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustoattacheddatabaseconfiguration #> function New-AzKustoAttachedDatabaseConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -2699,12 +2699,12 @@ Name Type testnewkustocluster/kustoprincipal1 Microsoft.Kusto/Clusters/PrincipalAssignments .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustoclusterprincipalassignment #> function New-AzKustoClusterPrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -2879,14 +2879,14 @@ Create or update a Kusto cluster. .Description Create or update a Kusto cluster. .Example -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 -------- ---- ---- ---- East US testnewkustocluster Microsoft.Kusto/Clusters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster .Notes COMPLEX PARAMETER PROPERTIES @@ -2901,7 +2901,7 @@ TRUSTEDEXTERNALTENANT : The cluster's external tenants https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustocluster #> function New-AzKustoCluster { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -2951,6 +2951,12 @@ param( # A boolean value that indicates if the cluster's disks are encrypted. ${EnableDiskEncryption}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # A boolean value that indicates if double encryption is enabled. + ${EnableDoubleEncryption}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.Management.Automation.SwitchParameter] @@ -2972,7 +2978,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities]))] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities]))] [System.Collections.Hashtable] # The list of user identities associated with the Kusto cluster. # The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. @@ -2998,7 +3004,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ${LanguageExtensionValue}, @@ -3042,7 +3048,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]] # The cluster's external tenants. # To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ${TrustedExternalTenant}, @@ -3197,12 +3203,12 @@ Name Type testnewkustocluster/mykustodatabase/kustoprincipal1 Microsoft.Kusto/Clusters/Databases/PrincipalAssignments .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustodatabaseprincipalassignment #> function New-AzKustoDatabasePrincipalAssignment { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -3631,7 +3637,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, @@ -4333,7 +4339,7 @@ AppId Email Fqn .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal .Notes COMPLEX PARAMETER PROPERTIES @@ -4361,7 +4367,7 @@ VALUE : The list of Kusto database principals. https://docs.microsoft.com/en-us/powershell/module/az.kusto/remove-azkustodatabaseprincipal #> function Remove-AzKustoDatabasePrincipal { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal])] [CmdletBinding(DefaultParameterSetName='RemoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='RemoveExpanded', Mandatory)] @@ -4399,7 +4405,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]] # The list of Kusto database principals. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, @@ -5273,7 +5279,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -5293,7 +5299,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustoclusternameavailability #> function Test-AzKustoClusterNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] @@ -5453,7 +5459,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -5473,7 +5479,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustoclusterprincipalassignmentnameavailability #> function Test-AzKustoClusterPrincipalAssignmentNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] @@ -5639,7 +5645,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -5659,7 +5665,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustodatabasenameavailability #> function Test-AzKustoDatabaseNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] @@ -5825,7 +5831,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -5845,7 +5851,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustodatabaseprincipalassignmentnameavailability #> function Test-AzKustoDatabasePrincipalAssignmentNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] @@ -6017,7 +6023,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -6037,7 +6043,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustodataconnectionnameavailability #> function Test-AzKustoDataConnectionNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] @@ -6209,7 +6215,7 @@ East US testnewkustocluster Microsoft.Kusto/Clusters .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster .Notes COMPLEX PARAMETER PROPERTIES @@ -6235,7 +6241,7 @@ TRUSTEDEXTERNALTENANT : The cluster's external tenants https://docs.microsoft.com/en-us/powershell/module/az.kusto/update-azkustocluster #> function Update-AzKustoCluster { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -6272,6 +6278,12 @@ param( # A boolean value that indicates if the cluster's disks are encrypted. ${EnableDiskEncryption}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # A boolean value that indicates if double encryption is enabled. + ${EnableDoubleEncryption}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.Management.Automation.SwitchParameter] @@ -6293,7 +6305,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities]))] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities]))] [System.Collections.Hashtable] # The list of user identities associated with the Kusto cluster. # The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. @@ -6319,7 +6331,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ${LanguageExtensionValue}, @@ -6376,14 +6388,14 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags]))] [System.Collections.Hashtable] # Resource tags. ${Tag}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]] # The cluster's external tenants. # To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ${TrustedExternalTenant}, @@ -6568,7 +6580,7 @@ event hub resource id and consumer group tuple provided are already used .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult .Notes COMPLEX PARAMETER PROPERTIES @@ -6588,7 +6600,7 @@ INPUTOBJECT : Identity Parameter 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)] @@ -6659,20 +6671,6 @@ param( # Resource location. ${Location}, - [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. - ${DataFormat}, - - [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. - ${TableName}, - [Parameter(ParameterSetName='DataExpandedEventHub', Mandatory)] [Parameter(ParameterSetName='DataExpandedEventGrid', Mandatory)] [Parameter(ParameterSetName='DataViaIdentityExpandedEventGrid', Mandatory)] @@ -6682,6 +6680,13 @@ param( # The resource ID of the event hub to be used to create a data connection / event grid is configured to send events. ${EventHubResourceId}, + [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. + ${DataFormat}, + [Parameter(ParameterSetName='DataExpandedEventHub')] [Parameter(ParameterSetName='DataExpandedIotHub')] [Parameter(ParameterSetName='DataViaIdentityExpandedIotHub')] @@ -6698,6 +6703,13 @@ param( # Optionally the mapping information can be added to each message. ${MappingRuleName}, + [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. + ${TableName}, + [Parameter(ParameterSetName='DataExpandedEventHub')] [Parameter(ParameterSetName='DataViaIdentityExpandedEventHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -6726,6 +6738,20 @@ param( # The resource ID of the storage account where the data resides. ${StorageAccountResourceId}, + [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -6788,6 +6814,8 @@ begin { DataViaIdentityExpandedIotHub = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; DataViaIdentityExpandedEventGrid = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; DataViaIdentityExpandedEventHub = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; + UpdateViaIdentityExpandedEventGrid = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; + UpdateExpandedEventGrid = 'Az.Kusto.custom\Invoke-AzKustoDataConnectionValidation'; } if (('DataExpandedEventHub', 'DataExpandedIotHub', 'DataExpandedEventGrid') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id @@ -6845,12 +6873,12 @@ Kind Location Name Type ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/Databases .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Link 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)] @@ -7030,7 +7058,7 @@ Kind Location Name Type ---- -------- ---- ---- EventHub East US testnewkustocluster/mykustodatabase/myeventhubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Example -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 ---- -------- ---- ---- @@ -7043,12 +7071,12 @@ Kind Location Name Type IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Link 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)] @@ -7103,20 +7131,6 @@ param( # Resource location. ${Location}, - [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. - ${DataFormat}, - - [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. - ${TableName}, - [Parameter(ParameterSetName='CreateExpandedEventHub', Mandatory)] [Parameter(ParameterSetName='CreateExpandedEventGrid', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -7124,6 +7138,13 @@ param( # The resource ID of the event hub to be used to create a data connection / event grid is configured to send events. ${EventHubResourceId}, + [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. + ${DataFormat}, + [Parameter(ParameterSetName='CreateExpandedEventHub')] [Parameter(ParameterSetName='CreateExpandedIotHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -7138,6 +7159,13 @@ param( # Optionally the mapping information can be added to each message. ${MappingRuleName}, + [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. + ${TableName}, + [Parameter(ParameterSetName='CreateExpandedEventHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression] @@ -7150,6 +7178,20 @@ param( # The resource ID of the storage account where the data resides. ${StorageAccountResourceId}, + [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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='UpdateViaIdentityExpandedEventGrid')] + [Parameter(ParameterSetName='UpdateExpandedEventGrid')] + [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(ParameterSetName='CreateExpandedIotHub', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] @@ -7232,9 +7274,11 @@ begin { $mapping = @{ CreateExpandedEventHub = 'Az.Kusto.custom\New-AzKustoDataConnection'; CreateExpandedEventGrid = 'Az.Kusto.custom\New-AzKustoDataConnection'; + UpdateViaIdentityExpandedEventGrid = 'Az.Kusto.custom\New-AzKustoDataConnection'; + UpdateExpandedEventGrid = 'Az.Kusto.custom\New-AzKustoDataConnection'; CreateExpandedIotHub = 'Az.Kusto.custom\New-AzKustoDataConnection'; } - if (('CreateExpandedEventHub', 'CreateExpandedEventGrid', 'CreateExpandedIotHub') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpandedEventHub', 'CreateExpandedEventGrid', 'UpdateViaIdentityExpandedEventGrid', 'UpdateExpandedEventGrid', 'CreateExpandedIotHub') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -7318,7 +7362,7 @@ ReadOnlyFollowing East US myfollowercluster/mykustodatabase Microsoft.Kusto/Clu .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -7338,7 +7382,7 @@ INPUTOBJECT : Identity Parameter 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)] @@ -7562,7 +7606,7 @@ IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/C .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -7582,7 +7626,7 @@ INPUTOBJECT : Identity Parameter 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)] @@ -7656,20 +7700,6 @@ param( # Resource location. ${Location}, - [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. - ${DataFormat}, - - [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. - ${TableName}, - [Parameter(ParameterSetName='UpdateExpandedEventHub', Mandatory)] [Parameter(ParameterSetName='UpdateExpandedEventGrid', Mandatory)] [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventGrid', Mandatory)] @@ -7679,6 +7709,13 @@ param( # The resource ID of the event hub to be used to create a data connection / event grid is configured to send events. ${EventHubResourceId}, + [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. + ${DataFormat}, + [Parameter(ParameterSetName='UpdateExpandedEventHub')] [Parameter(ParameterSetName='UpdateExpandedIotHub')] [Parameter(ParameterSetName='UpdateViaIdentityExpandedIotHub')] @@ -7695,6 +7732,13 @@ param( # Optionally the mapping information can be added to each message. ${MappingRuleName}, + [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. + ${TableName}, + [Parameter(ParameterSetName='UpdateExpandedEventHub')] [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -7723,6 +7767,20 @@ param( # The resource ID of the storage account where the data resides. ${StorageAccountResourceId}, + [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()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] diff --git a/src/Kusto/exports/Remove-AzKustoClusterLanguageExtension.ps1 b/src/Kusto/exports/Remove-AzKustoClusterLanguageExtension.ps1 index 6c235373c439..b960cf3c5267 100644 --- a/src/Kusto/exports/Remove-AzKustoClusterLanguageExtension.ps1 +++ b/src/Kusto/exports/Remove-AzKustoClusterLanguageExtension.ps1 @@ -79,7 +79,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, diff --git a/src/Kusto/exports/Remove-AzKustoDatabasePrincipal.ps1 b/src/Kusto/exports/Remove-AzKustoDatabasePrincipal.ps1 index b370acd2a070..a6c684add7c3 100644 --- a/src/Kusto/exports/Remove-AzKustoDatabasePrincipal.ps1 +++ b/src/Kusto/exports/Remove-AzKustoDatabasePrincipal.ps1 @@ -28,7 +28,7 @@ AppId Email Fqn .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal .Notes COMPLEX PARAMETER PROPERTIES @@ -56,7 +56,7 @@ VALUE : The list of Kusto database principals. https://docs.microsoft.com/en-us/powershell/module/az.kusto/remove-azkustodatabaseprincipal #> function Remove-AzKustoDatabasePrincipal { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal])] [CmdletBinding(DefaultParameterSetName='RemoveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='RemoveExpanded', Mandatory)] @@ -94,7 +94,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]] # The list of Kusto database principals. # To construct, see NOTES section for VALUE properties and create a hash table. ${Value}, diff --git a/src/Kusto/exports/Test-AzKustoClusterNameAvailability.ps1 b/src/Kusto/exports/Test-AzKustoClusterNameAvailability.ps1 index 1c7a17217bdb..826cea3f6fa0 100644 --- a/src/Kusto/exports/Test-AzKustoClusterNameAvailability.ps1 +++ b/src/Kusto/exports/Test-AzKustoClusterNameAvailability.ps1 @@ -34,7 +34,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustoclusternameavailability #> function Test-AzKustoClusterNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] diff --git a/src/Kusto/exports/Test-AzKustoClusterPrincipalAssignmentNameAvailability.ps1 b/src/Kusto/exports/Test-AzKustoClusterPrincipalAssignmentNameAvailability.ps1 index 8cdba073c39f..3451f0a05cd5 100644 --- a/src/Kusto/exports/Test-AzKustoClusterPrincipalAssignmentNameAvailability.ps1 +++ b/src/Kusto/exports/Test-AzKustoClusterPrincipalAssignmentNameAvailability.ps1 @@ -34,7 +34,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustoclusterprincipalassignmentnameavailability #> function Test-AzKustoClusterPrincipalAssignmentNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] diff --git a/src/Kusto/exports/Test-AzKustoDataConnectionNameAvailability.ps1 b/src/Kusto/exports/Test-AzKustoDataConnectionNameAvailability.ps1 index aad83fbd6a42..079801278f16 100644 --- a/src/Kusto/exports/Test-AzKustoDataConnectionNameAvailability.ps1 +++ b/src/Kusto/exports/Test-AzKustoDataConnectionNameAvailability.ps1 @@ -34,7 +34,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustodataconnectionnameavailability #> function Test-AzKustoDataConnectionNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] diff --git a/src/Kusto/exports/Test-AzKustoDatabaseNameAvailability.ps1 b/src/Kusto/exports/Test-AzKustoDatabaseNameAvailability.ps1 index 9efe67a3aa56..df6d89841a6e 100644 --- a/src/Kusto/exports/Test-AzKustoDatabaseNameAvailability.ps1 +++ b/src/Kusto/exports/Test-AzKustoDatabaseNameAvailability.ps1 @@ -34,7 +34,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustodatabasenameavailability #> function Test-AzKustoDatabaseNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] diff --git a/src/Kusto/exports/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.ps1 b/src/Kusto/exports/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.ps1 index 1813c9f3dd14..f187e7c258cc 100644 --- a/src/Kusto/exports/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.ps1 +++ b/src/Kusto/exports/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.ps1 @@ -34,7 +34,7 @@ Message Name NameAvailable Reason .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult .Notes COMPLEX PARAMETER PROPERTIES @@ -54,7 +54,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/az.kusto/test-azkustodatabaseprincipalassignmentnameavailability #> function Test-AzKustoDatabasePrincipalAssignmentNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CheckExpanded', Mandatory)] diff --git a/src/Kusto/exports/Update-AzKustoCluster.ps1 b/src/Kusto/exports/Update-AzKustoCluster.ps1 index 788cb9f17bdb..c7d710fd96e3 100644 --- a/src/Kusto/exports/Update-AzKustoCluster.ps1 +++ b/src/Kusto/exports/Update-AzKustoCluster.ps1 @@ -34,7 +34,7 @@ East US testnewkustocluster Microsoft.Kusto/Clusters .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster .Notes COMPLEX PARAMETER PROPERTIES @@ -60,7 +60,7 @@ TRUSTEDEXTERNALTENANT : The cluster's external tenants https://docs.microsoft.com/en-us/powershell/module/az.kusto/update-azkustocluster #> function Update-AzKustoCluster { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -97,6 +97,12 @@ param( # A boolean value that indicates if the cluster's disks are encrypted. ${EnableDiskEncryption}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # A boolean value that indicates if double encryption is enabled. + ${EnableDoubleEncryption}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.Management.Automation.SwitchParameter] @@ -118,7 +124,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities]))] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities]))] [System.Collections.Hashtable] # The list of user identities associated with the Kusto cluster. # The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. @@ -144,7 +150,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]] # The list of language extensions. # To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ${LanguageExtensionValue}, @@ -201,14 +207,14 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags]))] [System.Collections.Hashtable] # Resource tags. ${Tag}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]] # The cluster's external tenants. # To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ${TrustedExternalTenant}, diff --git a/src/Kusto/exports/Update-AzKustoDataConnection.ps1 b/src/Kusto/exports/Update-AzKustoDataConnection.ps1 index 9bbfb33407c8..b12417243c7e 100644 --- a/src/Kusto/exports/Update-AzKustoDataConnection.ps1 +++ b/src/Kusto/exports/Update-AzKustoDataConnection.ps1 @@ -61,7 +61,7 @@ IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/C .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -81,7 +81,7 @@ INPUTOBJECT : Identity Parameter 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)] @@ -155,20 +155,6 @@ param( # Resource location. ${Location}, - [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. - ${DataFormat}, - - [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. - ${TableName}, - [Parameter(ParameterSetName='UpdateExpandedEventHub', Mandatory)] [Parameter(ParameterSetName='UpdateExpandedEventGrid', Mandatory)] [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventGrid', Mandatory)] @@ -178,6 +164,13 @@ param( # The resource ID of the event hub to be used to create a data connection / event grid is configured to send events. ${EventHubResourceId}, + [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. + ${DataFormat}, + [Parameter(ParameterSetName='UpdateExpandedEventHub')] [Parameter(ParameterSetName='UpdateExpandedIotHub')] [Parameter(ParameterSetName='UpdateViaIdentityExpandedIotHub')] @@ -194,6 +187,13 @@ param( # Optionally the mapping information can be added to each message. ${MappingRuleName}, + [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. + ${TableName}, + [Parameter(ParameterSetName='UpdateExpandedEventHub')] [Parameter(ParameterSetName='UpdateViaIdentityExpandedEventHub')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] @@ -222,6 +222,20 @@ param( # The resource ID of the storage account where the data resides. ${StorageAccountResourceId}, + [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()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] diff --git a/src/Kusto/exports/Update-AzKustoDatabase.ps1 b/src/Kusto/exports/Update-AzKustoDatabase.ps1 index d4e8b96e45fd..813a65c9815d 100644 --- a/src/Kusto/exports/Update-AzKustoDatabase.ps1 +++ b/src/Kusto/exports/Update-AzKustoDatabase.ps1 @@ -54,7 +54,7 @@ ReadOnlyFollowing East US myfollowercluster/mykustodatabase Microsoft.Kusto/Clu .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -74,7 +74,7 @@ INPUTOBJECT : Identity Parameter 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)] diff --git a/src/Kusto/generate-info.json b/src/Kusto/generate-info.json deleted file mode 100644 index fade6414e538..000000000000 --- a/src/Kusto/generate-info.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "swagger_commit": "2911cba6010cda91a971f6a00fd5648e00c2901f", - "node": "v10.16.0", - "autorest_remodeler": "2.1.27", - "autorest_core": "3.0.6282", - "autorest_powershell": "2.1.382", - "autorest": "3.0.6149" -} diff --git a/src/Kusto/generated/api/Kusto.cs b/src/Kusto/generated/api/Kusto.cs index d4cefc6e9825..9ad85d0d1fad 100644 --- a/src/Kusto/generated/api/Kusto.cs +++ b/src/Kusto/generated/api/Kusto.cs @@ -28,9 +28,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdate(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdate(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -75,9 +75,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -136,7 +136,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -246,13 +246,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfiguration.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfiguration.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -281,7 +281,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -309,9 +309,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsDelete(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsDelete(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -352,9 +352,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -410,7 +410,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -533,7 +533,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -586,9 +586,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsGet(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsGet(string resourceGroupName, string clusterName, string attachedDatabaseConfigurationName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -628,9 +628,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -683,7 +683,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -700,13 +700,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfiguration.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfiguration.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -760,9 +760,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsListByCluster(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsListByCluster(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -803,9 +803,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsListByClusterViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsListByClusterViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -858,7 +858,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsListByCluster_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task AttachedDatabaseConfigurationsListByCluster_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -875,13 +875,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -932,9 +932,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailability(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailability(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -978,9 +978,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1037,7 +1037,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1054,13 +1054,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1088,7 +1088,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -1115,9 +1115,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdate(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdate(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1162,9 +1162,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1223,7 +1223,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1333,13 +1333,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1368,7 +1368,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -1396,9 +1396,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsDelete(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsDelete(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1439,9 +1439,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1495,7 +1495,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1618,7 +1618,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1671,9 +1671,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsGet(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsGet(string subscriptionId, string resourceGroupName, string clusterName, string principalAssignmentName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1713,9 +1713,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1768,7 +1768,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1785,13 +1785,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1843,9 +1843,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsList(string subscriptionId, string resourceGroupName, string clusterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsList(string subscriptionId, string resourceGroupName, string clusterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1884,9 +1884,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1937,7 +1937,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClusterPrincipalAssignmentsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1954,13 +1954,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignmentListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignmentListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2011,9 +2011,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersAddLanguageExtensions(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersAddLanguageExtensions(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2057,9 +2057,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersAddLanguageExtensionsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersAddLanguageExtensionsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2114,7 +2114,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersAddLanguageExtensions_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersAddLanguageExtensions_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2231,7 +2231,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2259,7 +2259,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersAddLanguageExtensions_Validate(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClustersAddLanguageExtensions_Validate(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2284,9 +2284,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersCheckNameAvailability(string subscriptionId, string location, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersCheckNameAvailability(string subscriptionId, string location, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2328,9 +2328,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2382,7 +2382,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2399,13 +2399,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2432,7 +2432,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersCheckNameAvailability_Validate(string subscriptionId, string location, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClustersCheckNameAvailability_Validate(string subscriptionId, string location, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2457,9 +2457,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersCreateOrUpdate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersCreateOrUpdate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2502,9 +2502,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2558,7 +2558,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2668,13 +2668,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2702,7 +2702,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClustersCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2728,9 +2728,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersDelete(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersDelete(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2769,9 +2769,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2822,7 +2822,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2945,7 +2945,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -2996,9 +2996,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabases(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabases(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3042,9 +3042,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabasesViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabasesViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3099,7 +3099,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabases_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabases_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3216,7 +3216,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3244,7 +3244,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabases_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClustersDetachFollowerDatabases_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -3271,9 +3271,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersDiagnoseVirtualNetwork(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersDiagnoseVirtualNetwork(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3314,9 +3314,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersDiagnoseVirtualNetworkViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersDiagnoseVirtualNetworkViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3367,7 +3367,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersDiagnoseVirtualNetwork_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersDiagnoseVirtualNetwork_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3475,13 +3475,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DiagnoseVirtualNetworkResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DiagnoseVirtualNetworkResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3531,9 +3531,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersGet(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersGet(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3571,9 +3571,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3623,7 +3623,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3640,13 +3640,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3694,9 +3694,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersList(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersList(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3733,9 +3733,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListByResourceGroup(string resourceGroupName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListByResourceGroup(string resourceGroupName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3772,9 +3772,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListByResourceGroupViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListByResourceGroupViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3822,7 +3822,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersListByResourceGroup_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersListByResourceGroup_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3839,13 +3839,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -3895,9 +3895,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListFollowerDatabases(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListFollowerDatabases(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3938,9 +3938,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListFollowerDatabasesViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListFollowerDatabasesViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3991,7 +3991,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersListFollowerDatabases_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersListFollowerDatabases_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4008,13 +4008,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -4064,9 +4064,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListLanguageExtensions(string subscriptionId, string resourceGroupName, string clusterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListLanguageExtensions(string subscriptionId, string resourceGroupName, string clusterName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4105,9 +4105,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListLanguageExtensionsViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListLanguageExtensionsViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4158,7 +4158,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersListLanguageExtensions_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersListLanguageExtensions_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4175,13 +4175,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -4229,9 +4229,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListSkus(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListSkus(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4269,9 +4269,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListSkusByResource(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListSkusByResource(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4310,9 +4310,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListSkusByResourceViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListSkusByResourceViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4363,7 +4363,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersListSkusByResource_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersListSkusByResource_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4380,13 +4380,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ListResourceSkusResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ListResourceSkusResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -4433,9 +4433,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListSkusViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListSkusViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4480,7 +4480,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersListSkus_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersListSkus_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4497,13 +4497,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescriptionList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescriptionList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -4546,9 +4546,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4593,7 +4593,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4610,13 +4610,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -4663,9 +4663,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensions(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensions(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4709,9 +4709,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensionsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensionsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4766,7 +4766,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensions_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensions_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4883,7 +4883,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -4911,7 +4911,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensions_Validate(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClustersRemoveLanguageExtensions_Validate(string subscriptionId, string resourceGroupName, string clusterName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -4936,9 +4936,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersStart(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersStart(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4977,9 +4977,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersStartViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersStartViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5030,7 +5030,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersStart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersStart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5147,7 +5147,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -5197,9 +5197,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersStop(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersStop(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5238,9 +5238,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersStopViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersStopViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5291,7 +5291,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersStop_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersStop_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5408,7 +5408,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -5459,9 +5459,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersUpdate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersUpdate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5504,9 +5504,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task ClustersUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task ClustersUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5560,7 +5560,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task ClustersUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5670,13 +5670,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Cluster.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -5704,7 +5704,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task ClustersUpdate_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task ClustersUpdate_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -5731,9 +5731,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailability(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailability(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5779,9 +5779,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5841,7 +5841,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5858,13 +5858,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -5893,7 +5893,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DataConnectionsCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -5922,9 +5922,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5971,9 +5971,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6033,7 +6033,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6143,13 +6143,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -6179,7 +6179,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DataConnectionsCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -6201,14 +6201,16 @@ public partial class Kusto /// ID forms part of the URI for every service call. /// The data connection parameters supplied to the CreateOrUpdate operation. /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync pipeline to use to make the request. /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidation(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation body, global::System.Func, global::System.Threading.Tasks.Task> onOk, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidation(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6239,7 +6241,7 @@ public partial class Kusto request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DataConnectionsDataConnectionValidation_Call(request,onOk,eventListener,sender); + await this.DataConnectionsDataConnectionValidation_Call(request,onOk,onDefault,eventListener,sender); } } @@ -6247,14 +6249,16 @@ public partial class Kusto /// /// The data connection parameters supplied to the CreateOrUpdate operation. /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync pipeline to use to make the request. /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidationViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation body, global::System.Func, global::System.Threading.Tasks.Task> onOk, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidationViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6298,7 +6302,7 @@ public partial class Kusto request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BodyContentSet, _url); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.DataConnectionsDataConnectionValidation_Call(request,onOk,eventListener,sender); + await this.DataConnectionsDataConnectionValidation_Call(request,onOk,onDefault,eventListener,sender); } } @@ -6307,12 +6311,14 @@ public partial class Kusto /// /// the prepared HttpRequestMessage to send. /// a delegate that is called when the remote service returns 200 (OK). + /// a delegate that is called when the remote service returns default (any response code not handled + /// elsewhere). /// an instance that will receive events. /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync pipeline to use to make the request. /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidation_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidation_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6322,6 +6328,97 @@ public partial class Kusto await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sender.SendAsync(request, eventListener); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: location + var _finalUri = _response.GetFirstHeader(@"Location"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Polling, $"Polling {_uri}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + try { + if( Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Polling, $"Polled {_uri} provisioning state {state}.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + switch( state?.ToString()?.ToLower() ) + { + case "succeeded": + case "failed": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + break; + } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -6329,12 +6426,14 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { - throw new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.UndeclaredResponseException(_response); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; } } } @@ -6362,7 +6461,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidation_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DataConnectionsDataConnectionValidation_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -6391,9 +6490,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsDelete(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsDelete(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6436,9 +6535,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6495,7 +6594,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DataConnectionsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6618,7 +6717,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -6674,9 +6773,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsGet(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsGet(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6718,9 +6817,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6776,7 +6875,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DataConnectionsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6793,13 +6892,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -6854,9 +6953,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsListByDatabase(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsListByDatabase(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6897,9 +6996,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsListByDatabaseViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsListByDatabaseViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6953,7 +7052,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsListByDatabase_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DataConnectionsListByDatabase_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6970,13 +7069,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -7031,9 +7130,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsUpdate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsUpdate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7080,9 +7179,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DataConnectionsUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DataConnectionsUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7142,7 +7241,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DataConnectionsUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7252,13 +7351,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -7288,7 +7387,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DataConnectionsUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DataConnectionsUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -7319,9 +7418,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailability(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailability(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7369,9 +7468,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7431,7 +7530,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7448,13 +7547,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -7483,7 +7582,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -7512,9 +7611,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdate(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdate(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7561,9 +7660,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7625,7 +7724,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7735,13 +7834,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -7771,7 +7870,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -7801,9 +7900,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsDelete(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsDelete(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7846,9 +7945,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7905,7 +8004,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8028,7 +8127,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -8084,9 +8183,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsGet(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsGet(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, string principalAssignmentName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8128,9 +8227,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8186,7 +8285,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8203,13 +8302,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignment.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -8264,9 +8363,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsList(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsList(string subscriptionId, string resourceGroupName, string clusterName, string databaseName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8307,9 +8406,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8363,7 +8462,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasePrincipalAssignmentsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8380,13 +8479,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignmentListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignmentListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -8440,9 +8539,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesAddPrincipals(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesAddPrincipals(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8488,9 +8587,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesAddPrincipalsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesAddPrincipalsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8548,7 +8647,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesAddPrincipals_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesAddPrincipals_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8565,13 +8664,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -8600,7 +8699,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesAddPrincipals_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DatabasesAddPrincipals_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -8627,9 +8726,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesCheckNameAvailability(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesCheckNameAvailability(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8673,9 +8772,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8730,7 +8829,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesCheckNameAvailability_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8747,13 +8846,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -8781,7 +8880,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DatabasesCheckNameAvailability_Validate(string resourceGroupName, string clusterName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -8808,9 +8907,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesCreateOrUpdate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesCreateOrUpdate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8855,9 +8954,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8914,7 +9013,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9024,13 +9123,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -9059,7 +9158,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DatabasesCreateOrUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -9087,9 +9186,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesDelete(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesDelete(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9130,9 +9229,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9186,7 +9285,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9309,7 +9408,7 @@ public partial class Kusto default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -9362,9 +9461,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesGet(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesGet(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9404,9 +9503,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9459,7 +9558,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9476,13 +9575,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -9534,9 +9633,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesListByCluster(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesListByCluster(string resourceGroupName, string clusterName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9575,9 +9674,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesListByClusterViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesListByClusterViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9628,7 +9727,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesListByCluster_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesListByCluster_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9645,13 +9744,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -9702,9 +9801,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesListPrincipals(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesListPrincipals(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9745,9 +9844,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesListPrincipalsViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesListPrincipalsViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9801,7 +9900,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesListPrincipals_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesListPrincipals_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9818,13 +9917,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -9878,9 +9977,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesRemovePrincipals(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesRemovePrincipals(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9926,9 +10025,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesRemovePrincipalsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesRemovePrincipalsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9986,7 +10085,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesRemovePrincipals_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesRemovePrincipals_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -10003,13 +10102,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -10038,7 +10137,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesRemovePrincipals_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DatabasesRemovePrincipals_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -10066,9 +10165,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesUpdate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesUpdate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10113,9 +10212,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DatabasesUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DatabasesUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10172,7 +10271,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DatabasesUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -10282,13 +10381,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -10317,7 +10416,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DatabasesUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DatabasesUpdate_Validate(string resourceGroupName, string clusterName, string databaseName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase body, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -10339,9 +10438,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task OperationsList(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task OperationsList(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10374,9 +10473,9 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task OperationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task OperationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { - var apiVersion = @"2020-02-15"; + var apiVersion = @"2020-06-14"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10418,7 +10517,7 @@ public partial class Kusto /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task OperationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task OperationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -10435,13 +10534,13 @@ public partial class Kusto case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.PowerShell.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.PowerShell.cs index 4e7926d3ac90..5239fa6a62fc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class AttachedDatabaseConfiguration partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,21 +61,21 @@ internal AttachedDatabaseConfiguration(global::System.Collections.IDictionary co return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DatabaseName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -88,43 +88,43 @@ internal AttachedDatabaseConfiguration(global::System.Management.Automation.PSOb return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DatabaseName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).ClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AttachedDatabaseConfiguration(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AttachedDatabaseConfiguration(content); } @@ -134,7 +134,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttac /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.TypeConverter.cs index 6fda28bbb60e..c70d7a044f52 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.cs index e233b587377b..2b9b6f3e769d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing an attached database configuration. public partial class AttachedDatabaseConfiguration : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// @@ -17,23 +17,23 @@ public partial class AttachedDatabaseConfiguration : /// The list of databases from the clusterResourceId which are currently attached to the cluster. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string[] AttachedDatabaseName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).AttachedDatabaseName; } + public string[] AttachedDatabaseName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).AttachedDatabaseName; } /// /// The resource id of the cluster where the databases you would like to attach reside. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string ClusterResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).ClusterResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).ClusterResourceId = value; } + public string ClusterResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).ClusterResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).ClusterResourceId = value; } /// /// The name of the database which you would like to attach, use * if you want to follow all current and future databases. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string DatabaseName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).DatabaseName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).DatabaseName = value; } + public string DatabaseName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).DatabaseName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).DatabaseName = value; } /// The default principals modification kind [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind DefaultPrincipalsModificationKind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).DefaultPrincipalsModificationKind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).DefaultPrincipalsModificationKind = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind DefaultPrincipalsModificationKind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).DefaultPrincipalsModificationKind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).DefaultPrincipalsModificationKind = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -58,28 +58,28 @@ public partial class AttachedDatabaseConfiguration : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for AttachedDatabaseName - string[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal.AttachedDatabaseName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).AttachedDatabaseName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).AttachedDatabaseName = value; } + string[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal.AttachedDatabaseName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).AttachedDatabaseName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).AttachedDatabaseName = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).ProvisioningState = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__proxyResource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties _property; /// The properties of the attached database configuration. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationProperties()); set => this._property = value; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)Property).ProvisioningState; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -187,7 +187,7 @@ internal partial interface IAttachedDatabaseConfigurationInternal : /// Resource location. string Location { get; set; } /// The properties of the attached database configuration. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties Property { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.json.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.json.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.json.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.json.cs index 0899948ec46a..93566a23969c 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfiguration.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfiguration.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -59,19 +59,19 @@ internal AttachedDatabaseConfiguration(Microsoft.Azure.PowerShell.Cmdlets.Kusto. return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationProperties.FromJson(__jsonProperties) : Property;} {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new AttachedDatabaseConfiguration(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.PowerShell.cs similarity index 86% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.PowerShell.cs index 8a4311b4c47c..f2033be51228 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class AttachedDatabaseConfigurationListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal AttachedDatabaseConfigurationListResult(global::System.Collections.IDic return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,34 +79,34 @@ internal AttachedDatabaseConfigurationListResult(global::System.Management.Autom return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfigurationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfigurationTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AttachedDatabaseConfigurationListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AttachedDatabaseConfigurationListResult(content); } @@ -117,7 +117,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttac /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.TypeConverter.cs index 1b5b58821916..53925a161b56 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -104,14 +104,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.cs similarity index 83% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.cs index 899244d2e4e2..27b2348d6e5d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list attached database configurations operation response. public partial class AttachedDatabaseConfigurationListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration[] _value; /// The list of attached database configurations. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public AttachedDatabaseConfigurationListResult() @@ -31,8 +31,8 @@ public partial interface IAttachedDatabaseConfigurationListResult : ReadOnly = false, Description = @"The list of attached database configurations.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration[] Value { get; set; } } /// The list attached database configurations operation response. @@ -40,7 +40,7 @@ internal partial interface IAttachedDatabaseConfigurationListResultInternal { /// The list of attached database configurations. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.json.cs index bc5105c79fc2..9af59b0f1b47 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal AttachedDatabaseConfigurationListResult(Microsoft.Azure.PowerShell.Cmdl { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfiguration.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfiguration.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new AttachedDatabaseConfigurationListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.PowerShell.cs similarity index 83% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.PowerShell.cs index aef1d689ee70..76d1b47b35c8 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -50,7 +50,7 @@ public partial class AttachedDatabaseConfigurationProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -63,16 +63,16 @@ internal AttachedDatabaseConfigurationProperties(global::System.Collections.IDic return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -85,38 +85,38 @@ internal AttachedDatabaseConfigurationProperties(global::System.Management.Autom return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName = (string[]) content.GetValueForProperty("AttachedDatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).AttachedDatabaseName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind) content.GetValueForProperty("DefaultPrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).DefaultPrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AttachedDatabaseConfigurationProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AttachedDatabaseConfigurationProperties(content); } @@ -127,7 +127,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttac /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.TypeConverter.cs index a82d7fcf28fd..0aa905ac6e52 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -104,14 +104,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.cs index 31dc6120a6be..ca78901554f8 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -6,8 +6,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 /// Class representing the an attached database configuration properties of kind specific. /// public partial class AttachedDatabaseConfigurationProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal { /// Backing field for property. @@ -45,10 +45,10 @@ public partial class AttachedDatabaseConfigurationProperties : public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DefaultPrincipalsModificationKind DefaultPrincipalsModificationKind { get => this._defaultPrincipalsModificationKind; set => this._defaultPrincipalsModificationKind = value; } /// Internal Acessors for AttachedDatabaseName - string[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal.AttachedDatabaseName { get => this._attachedDatabaseName; set { {_attachedDatabaseName = value;} } } + string[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal.AttachedDatabaseName { get => this._attachedDatabaseName; set { {_attachedDatabaseName = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? _provisioningState; diff --git a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.json.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.json.cs index 601961ff8558..fe19220495d4 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AttachedDatabaseConfigurationProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AttachedDatabaseConfigurationProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -69,13 +69,13 @@ internal AttachedDatabaseConfigurationProperties(Microsoft.Azure.PowerShell.Cmdl } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfigurationProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfigurationProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new AttachedDatabaseConfigurationProperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.PowerShell.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/AzureCapacity.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureCapacity.PowerShell.cs index da38a8dae7ea..99b4fed4e870 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class AzureCapacity partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,15 +61,15 @@ internal AzureCapacity(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Default = (int) content.GetValueForProperty("Default",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Default, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).ScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("ScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Default = (int) content.GetValueForProperty("Default",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Default, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).ScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("ScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -82,35 +82,35 @@ internal AzureCapacity(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Default = (int) content.GetValueForProperty("Default",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Default, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).ScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("ScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)this).ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Default = (int) content.GetValueForProperty("Default",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Default, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).ScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("ScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)this).ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AzureCapacity(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AzureCapacity(content); } @@ -120,7 +120,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzure /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AzureCapacity.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureCapacity.TypeConverter.cs index cc7996a00d20..1e4f4ac2d0a4 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.cs b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AzureCapacity.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureCapacity.cs index afef8d32df6c..a934b5cd812a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Azure capacity definition. public partial class AzureCapacity : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.json.cs b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/AzureCapacity.json.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureCapacity.json.cs index f0ca72d2943f..28922e4ff4c0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureCapacity.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureCapacity.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -66,13 +66,13 @@ internal AzureCapacity(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.Jso } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new AzureCapacity(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.PowerShell.cs similarity index 75% rename from src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.PowerShell.cs index 5b4ab4e7b0e0..c8eb7dd9142a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class AzureResourceSku partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,21 +61,21 @@ internal AzureResourceSku(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Capacity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Capacity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureCapacityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSkuTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).ResourceType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityDefault = (int) content.GetValueForProperty("CapacityDefault",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityDefault, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMaximum = (int) content.GetValueForProperty("CapacityMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMinimum = (int) content.GetValueForProperty("CapacityMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("CapacityScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Capacity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Capacity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureCapacityTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).ResourceType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityDefault = (int) content.GetValueForProperty("CapacityDefault",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityDefault, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMaximum = (int) content.GetValueForProperty("CapacityMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMinimum = (int) content.GetValueForProperty("CapacityMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("CapacityScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -88,41 +88,41 @@ internal AzureResourceSku(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Capacity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Capacity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureCapacityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSkuTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).ResourceType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityDefault = (int) content.GetValueForProperty("CapacityDefault",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityDefault, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMaximum = (int) content.GetValueForProperty("CapacityMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMinimum = (int) content.GetValueForProperty("CapacityMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("CapacityScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).CapacityScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Capacity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Capacity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureCapacityTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).ResourceType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityDefault = (int) content.GetValueForProperty("CapacityDefault",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityDefault, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMaximum = (int) content.GetValueForProperty("CapacityMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMinimum = (int) content.GetValueForProperty("CapacityMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityScaleType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType) content.GetValueForProperty("CapacityScaleType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).CapacityScaleType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AzureResourceSku(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AzureResourceSku(content); } @@ -132,7 +132,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzure /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.TypeConverter.cs index 7ddac8700eff..34fe1e55dbd9 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.cs b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.cs index efcf5fa1f448..c843d5e2c7cc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.cs @@ -1,41 +1,41 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Azure resource SKU definition. public partial class AzureResourceSku : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity _capacity; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity _capacity; /// The number of instances of the cluster. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity Capacity { get => (this._capacity = this._capacity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureCapacity()); set => this._capacity = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity Capacity { get => (this._capacity = this._capacity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureCapacity()); set => this._capacity = value; } /// The default capacity that would be used. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int CapacityDefault { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).Default; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).Default = value; } + public int CapacityDefault { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).Default; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).Default = value; } /// Maximum allowed capacity. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int CapacityMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).Maximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).Maximum = value; } + public int CapacityMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).Maximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).Maximum = value; } /// Minimum allowed capacity. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int CapacityMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).Minimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).Minimum = value; } + public int CapacityMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).Minimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).Minimum = value; } /// Scale type. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType CapacityScaleType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).ScaleType; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacityInternal)Capacity).ScaleType = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureScaleType CapacityScaleType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).ScaleType; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacityInternal)Capacity).ScaleType = value; } /// Internal Acessors for Capacity - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal.Capacity { get => (this._capacity = this._capacity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureCapacity()); set { {_capacity = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal.Capacity { get => (this._capacity = this._capacity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureCapacity()); set { {_capacity = value;} } } /// Internal Acessors for Sku - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSkuInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku()); set { {_sku = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSkuInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku()); set { {_sku = value;} } } /// Backing field for property. private string _resourceType; @@ -45,23 +45,23 @@ public partial class AzureResourceSku : public string ResourceType { get => this._resourceType; set => this._resourceType = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku _sku; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku _sku; /// The SKU details. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku()); set => this._sku = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku()); set => this._sku = value; } /// The number of instances of the cluster. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Capacity = value; } + public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Capacity = value; } /// SKU name. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Name = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Name = value; } /// SKU tier. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Tier = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Tier = value; } /// Creates an new instance. public AzureResourceSku() @@ -144,7 +144,7 @@ internal partial interface IAzureResourceSkuInternal { /// The number of instances of the cluster. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureCapacity Capacity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureCapacity Capacity { get; set; } /// The default capacity that would be used. int CapacityDefault { get; set; } /// Maximum allowed capacity. @@ -156,7 +156,7 @@ internal partial interface IAzureResourceSkuInternal /// Resource Namespace and Type. string ResourceType { get; set; } /// The SKU details. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Sku { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Sku { get; set; } /// The number of instances of the cluster. int? SkuCapacity { get; set; } /// SKU name. diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.json.cs b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.json.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.json.cs index 026c5be295a5..96ea2ef29857 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureResourceSku.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureResourceSku.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,20 +58,20 @@ internal AzureResourceSku(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json. { return; } - {_capacity = If( json?.PropertyT("capacity"), out var __jsonCapacity) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureCapacity.FromJson(__jsonCapacity) : Capacity;} - {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku.FromJson(__jsonSku) : Sku;} + {_capacity = If( json?.PropertyT("capacity"), out var __jsonCapacity) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureCapacity.FromJson(__jsonCapacity) : Capacity;} + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku.FromJson(__jsonSku) : Sku;} {_resourceType = If( json?.PropertyT("resourceType"), out var __jsonResourceType) ? (string)__jsonResourceType : (string)ResourceType;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new AzureResourceSku(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureSku.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/AzureSku.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/AzureSku.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureSku.PowerShell.cs index 12d4b00b1ce5..f556e2144b46 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureSku.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureSku.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class AzureSku partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,14 +61,14 @@ internal AzureSku(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -81,34 +81,34 @@ internal AzureSku(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AzureSku(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AzureSku(content); } @@ -118,7 +118,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzure /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureSku.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/AzureSku.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AzureSku.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureSku.TypeConverter.cs index 2963ae79e52c..bbbec9e5bb0a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureSku.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureSku.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureSku.cs b/src/Kusto/generated/api/Models/Api20200614/AzureSku.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/AzureSku.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureSku.cs index aebec5e72179..daea5f812e6d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureSku.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureSku.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Azure SKU definition. public partial class AzureSku : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/AzureSku.json.cs b/src/Kusto/generated/api/Models/Api20200614/AzureSku.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/AzureSku.json.cs rename to src/Kusto/generated/api/Models/Api20200614/AzureSku.json.cs index 701a29a8cb69..0b8b61a2a736 100644 --- a/src/Kusto/generated/api/Models/Api20200215/AzureSku.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/AzureSku.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -65,13 +65,13 @@ internal AzureSku(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObje } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new AzureSku(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.PowerShell.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.PowerShell.cs index c8c16b7b340d..945efa1e9484 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class CheckNameRequest partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,13 +61,13 @@ internal CheckNameRequest(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -80,33 +80,33 @@ internal CheckNameRequest(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CheckNameRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CheckNameRequest(content); } @@ -116,7 +116,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheck /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.TypeConverter.cs index 1a2c0f07e36c..486f2d7a1475 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.cs index ec410d3226f5..20892cba5878 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The result returned from a database check name availability request. public partial class CheckNameRequest : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequestInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.json.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.json.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.json.cs index fd958b762d92..c1a63ddee5a1 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameRequest.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameRequest.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -64,13 +64,13 @@ internal CheckNameRequest(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json. } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new CheckNameRequest(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.PowerShell.cs similarity index 83% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameResult.PowerShell.cs index 9753559b97de..bcd46f6b2dc3 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class CheckNameResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,15 +61,15 @@ internal CheckNameResult(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Message, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -82,35 +82,35 @@ internal CheckNameResult(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Message, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Reason.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CheckNameResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CheckNameResult(content); } @@ -120,7 +120,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheck /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameResult.TypeConverter.cs index 2993479101e3..8e09c6f86192 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameResult.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameResult.cs index 0564a5016977..9e480c2c0103 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The result returned from a check name availability request. public partial class CheckNameResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResultInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/CheckNameResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/CheckNameResult.json.cs index 7514be0a93d0..ad483133e5fb 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CheckNameResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CheckNameResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -66,13 +66,13 @@ internal CheckNameResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.J } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new CheckNameResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudError.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/CloudError.PowerShell.cs similarity index 77% rename from src/Kusto/generated/api/Models/Api20200215/CloudError.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudError.PowerShell.cs index ff7c3d21c8e4..bf06557fa410 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudError.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudError.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class CloudError partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,16 +61,16 @@ internal CloudError(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBodyTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Message, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Target, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBodyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBodyTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -83,36 +83,36 @@ internal CloudError(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBodyTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Message, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Target, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBodyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBodyTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CloudError(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CloudError(content); } @@ -122,7 +122,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloud /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudError.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/CloudError.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/CloudError.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudError.TypeConverter.cs index a04c5055b6e8..db5e4da33f97 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudError.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudError.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudError.cs b/src/Kusto/generated/api/Models/Api20200614/CloudError.cs similarity index 83% rename from src/Kusto/generated/api/Models/Api20200215/CloudError.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudError.cs index a876a28d0288..f819c529aa70 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudError.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudError.cs @@ -1,44 +1,44 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// An error response from Kusto. public partial class CloudError : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal { /// /// An identifier for the error. Codes are invariant and are intended to be consumed programmatically. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Code = value; } + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Code = value; } /// A list of additional details about the error. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Detail = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Detail = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody _error; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody _error; /// An error response from Kusto. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBody()); set => this._error = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBody()); set => this._error = value; } /// /// A message describing the error, intended to be suitable for displaying in a user interface. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Message = value; } + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Message = value; } /// Internal Acessors for Error - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBody()); set { {_error = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBody()); set { {_error = value;} } } /// /// The target of the particular error. For example, the name of the property in error. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)Error).Target = value; } + public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)Error).Target = value; } /// Creates an new instance. public CloudError() @@ -66,8 +66,8 @@ public partial interface ICloudError : ReadOnly = false, Description = @"A list of additional details about the error.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[] Detail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[] Detail { get; set; } /// /// A message describing the error, intended to be suitable for displaying in a user interface. /// @@ -99,9 +99,9 @@ internal partial interface ICloudErrorInternal /// string Code { get; set; } /// A list of additional details about the error. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[] Detail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[] Detail { get; set; } /// An error response from Kusto. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody Error { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody Error { get; set; } /// /// A message describing the error, intended to be suitable for displaying in a user interface. /// diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudError.json.cs b/src/Kusto/generated/api/Models/Api20200614/CloudError.json.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/CloudError.json.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudError.json.cs index 4fa39abccd6d..1cdb6a4b29c1 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudError.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudError.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal CloudError(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonOb { return; } - {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBody.FromJson(__jsonError) : Error;} + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBody.FromJson(__jsonError) : Error;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudError FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudError FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new CloudError(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.PowerShell.cs similarity index 80% rename from src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.PowerShell.cs index 648d43fae3d6..0d6c57b5c0f6 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class CloudErrorBody partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,15 +61,15 @@ internal CloudErrorBody(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBodyTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -82,35 +82,35 @@ internal CloudErrorBody(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBodyTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CloudErrorBody(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CloudErrorBody(content); } @@ -120,7 +120,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloud /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.TypeConverter.cs index c4c348f65664..b20da5c71529 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.cs b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.cs similarity index 94% rename from src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.cs index 5b929aebfa92..bac29344b2a7 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// An error response from Kusto. public partial class CloudErrorBody : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBodyInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBodyInternal { /// Backing field for property. @@ -18,11 +18,11 @@ public partial class CloudErrorBody : public string Code { get => this._code; set => this._code = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[] _detail; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[] _detail; /// A list of additional details about the error. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[] Detail { get => this._detail; set => this._detail = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[] Detail { get => this._detail; set => this._detail = value; } /// Backing field for property. private string _message; @@ -68,8 +68,8 @@ public partial interface ICloudErrorBody : ReadOnly = false, Description = @"A list of additional details about the error.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[] Detail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[] Detail { get; set; } /// /// A message describing the error, intended to be suitable for displaying in a user interface. /// @@ -101,7 +101,7 @@ internal partial interface ICloudErrorBodyInternal /// string Code { get; set; } /// A list of additional details about the error. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody[] Detail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody[] Detail { get; set; } /// /// A message describing the error, intended to be suitable for displaying in a user interface. /// diff --git a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.json.cs b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.json.cs rename to src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.json.cs index 67e4287173a7..b8d3c6c8434b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/CloudErrorBody.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/CloudErrorBody.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -61,18 +61,18 @@ internal CloudErrorBody(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.Js {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} {_target = If( json?.PropertyT("target"), out var __jsonTarget) ? (string)__jsonTarget : (string)Target;} - {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CloudErrorBody.FromJson(__u) )) ))() : null : Detail;} + {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CloudErrorBody.FromJson(__u) )) ))() : null : Detail;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICloudErrorBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICloudErrorBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new CloudErrorBody(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/Cluster.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/Cluster.PowerShell.cs similarity index 65% rename from src/Kusto/generated/api/Models/Api20200215/Cluster.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/Cluster.PowerShell.cs index 09bdf985f0ff..0dedf08ed79e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Cluster.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Cluster.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class Cluster partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,51 +61,52 @@ internal Cluster(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSkuTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityTenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscaleTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).DataIngestionUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).StateReason, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsListTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Uri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenantTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscaleTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).DataIngestionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDoubleEncryption = (bool?) content.GetValueForProperty("EnableDoubleEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDoubleEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).StateReason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsListTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Uri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenantTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -118,71 +119,72 @@ internal Cluster(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSkuTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityTenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscaleTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).DataIngestionUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).StateReason, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsListTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).Uri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenantTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscaleTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).DataIngestionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDoubleEncryption = (bool?) content.GetValueForProperty("EnableDoubleEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableDoubleEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).StateReason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsListTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).Uri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenantTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Cluster(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Cluster(content); } @@ -192,7 +194,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/Cluster.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/Cluster.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/Cluster.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/Cluster.TypeConverter.cs index 6e8bb07591e9..a85ba9f67c98 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Cluster.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Cluster.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/Cluster.cs b/src/Kusto/generated/api/Models/Api20200614/Cluster.cs similarity index 80% rename from src/Kusto/generated/api/Models/Api20200215/Cluster.cs rename to src/Kusto/generated/api/Models/Api20200614/Cluster.cs index 3f6c8e6a4f46..eca53a75513e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Cluster.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Cluster.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing a Kusto cluster. public partial class Cluster : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// @@ -16,19 +16,23 @@ public partial class Cluster : /// The cluster data ingestion URI. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).DataIngestionUri; } + public string DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).DataIngestionUri; } /// A boolean value that indicates if the cluster's disks are encrypted. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool? EnableDiskEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableDiskEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableDiskEncryption = value; } + public bool? EnableDiskEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDiskEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDiskEncryption = value; } + + /// A boolean value that indicates if double encryption is enabled. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] + public bool? EnableDoubleEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDoubleEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDoubleEncryption = value; } /// A boolean value that indicates if the purge operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool? EnablePurge { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnablePurge; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnablePurge = value; } + public bool? EnablePurge { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnablePurge; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnablePurge = value; } /// A boolean value that indicates if the streaming ingest is enabled. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool? EnableStreamingIngest { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableStreamingIngest; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableStreamingIngest = value; } + public bool? EnableStreamingIngest { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableStreamingIngest; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableStreamingIngest = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -37,46 +41,46 @@ public partial class Cluster : public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__trackedResource).Id; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity _identity; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity _identity; /// The identity of the cluster, if configured. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity()); set => this._identity = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity()); set => this._identity = value; } /// The principal ID of resource identity. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).PrincipalId; } + public string IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).PrincipalId; } /// The tenant ID of resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).TenantId; } + public string IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).TenantId; } /// The identity type. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).Type = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).Type = value; } /// /// The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).UserAssignedIdentity = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).UserAssignedIdentity = value; } /// The name of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName = value; } + public string KeyVaultPropertyKeyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName = value; } /// The Uri of the key vault. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyVaultUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri = value; } + public string KeyVaultPropertyKeyVaultUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri = value; } /// The version of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion = value; } + public string KeyVaultPropertyKeyVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion = value; } /// The list of language extensions. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtensionValue; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtensionValue = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtensionValue; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtensionValue = value; } /// The geo-location where the resource lives [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] @@ -92,46 +96,46 @@ public partial class Cluster : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__trackedResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__trackedResource).Type = value; } /// Internal Acessors for DataIngestionUri - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).DataIngestionUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).DataIngestionUri = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).DataIngestionUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).DataIngestionUri = value; } /// Internal Acessors for Identity - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity()); set { {_identity = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity()); set { {_identity = value;} } } /// Internal Acessors for IdentityPrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).PrincipalId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).PrincipalId = value; } /// Internal Acessors for IdentityTenantId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).TenantId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).TenantId = value; } /// Internal Acessors for KeyVaultProperty - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.KeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultProperty = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.KeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultProperty = value; } /// Internal Acessors for LanguageExtension - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.LanguageExtension { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtension; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtension = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.LanguageExtension { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtension; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtension = value; } /// Internal Acessors for OptimizedAutoscale - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.OptimizedAutoscale { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscale; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscale = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.OptimizedAutoscale { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscale; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscale = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for Sku - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku()); set { {_sku = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku()); set { {_sku = value;} } } /// Internal Acessors for State - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).State; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).State = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).State; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).State = value; } /// Internal Acessors for StateReason - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).StateReason; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).StateReason = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).StateReason; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).StateReason = value; } /// Internal Acessors for Uri - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).Uri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).Uri = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).Uri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).Uri = value; } /// Internal Acessors for VirtualNetworkConfiguration - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterInternal.VirtualNetworkConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterInternal.VirtualNetworkConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] @@ -141,57 +145,57 @@ public partial class Cluster : /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool OptimizedAutoscaleIsEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled = value; } + public bool OptimizedAutoscaleIsEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled = value; } /// Maximum allowed instances count. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum = value; } + public int OptimizedAutoscaleMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum = value; } /// Minimum allowed instances count. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum = value; } + public int OptimizedAutoscaleMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum = value; } /// The version of the template defined, for instance 1. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion = value; } + public int OptimizedAutoscaleVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties _property; /// The cluster properties. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties()); set => this._property = value; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).ProvisioningState; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku _sku; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku _sku; /// The SKU of the cluster. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku()); set => this._sku = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku()); set => this._sku = value; } /// The number of instances of the cluster. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Capacity = value; } + public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Capacity = value; } /// SKU name. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Name = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Name = value; } /// SKU tier. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Tier = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Tier = value; } /// The state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).State; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).State; } /// The reason for the cluster's current state. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).StateReason; } + public string StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).StateReason; } /// Resource tags. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] @@ -199,7 +203,7 @@ public partial class Cluster : /// The cluster's external tenants. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).TrustedExternalTenant; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).TrustedExternalTenant = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).TrustedExternalTenant; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).TrustedExternalTenant = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -209,19 +213,19 @@ public partial class Cluster : /// The cluster URI. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).Uri; } + public string Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).Uri; } /// Data management's service public IP address resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationDataManagementPublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId = value; } + public string VirtualNetworkConfigurationDataManagementPublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId = value; } /// Engine service's public IP address resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationEnginePublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId = value; } + public string VirtualNetworkConfigurationEnginePublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId = value; } /// The subnet resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationSubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId = value; } + public string VirtualNetworkConfigurationSubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId = value; } /// Backing field for property. private string[] _zone; @@ -269,6 +273,14 @@ public partial interface ICluster : SerializedName = @"enableDiskEncryption", PossibleTypes = new [] { typeof(bool) })] bool? EnableDiskEncryption { get; set; } + /// A boolean value that indicates if double encryption is enabled. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A boolean value that indicates if double encryption is enabled.", + SerializedName = @"enableDoubleEncryption", + PossibleTypes = new [] { typeof(bool) })] + bool? EnableDoubleEncryption { get; set; } /// A boolean value that indicates if the purge operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -318,8 +330,8 @@ public partial interface ICluster : ReadOnly = false, Description = @"The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } /// The name of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = true, @@ -350,8 +362,8 @@ public partial interface ICluster : ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get; set; } /// /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// @@ -440,8 +452,8 @@ public partial interface ICluster : ReadOnly = false, Description = @"The cluster's external tenants.", SerializedName = @"trustedExternalTenants", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } /// The cluster URI. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -492,12 +504,14 @@ internal partial interface IClusterInternal : string DataIngestionUri { get; set; } /// A boolean value that indicates if the cluster's disks are encrypted. bool? EnableDiskEncryption { get; set; } + /// A boolean value that indicates if double encryption is enabled. + bool? EnableDoubleEncryption { get; set; } /// A boolean value that indicates if the purge operations are enabled. bool? EnablePurge { get; set; } /// A boolean value that indicates if the streaming ingest is enabled. bool? EnableStreamingIngest { get; set; } /// The identity of the cluster, if configured. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity Identity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity Identity { get; set; } /// The principal ID of resource identity. string IdentityPrincipalId { get; set; } /// The tenant ID of resource. @@ -508,9 +522,9 @@ internal partial interface IClusterInternal : /// The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. /// - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } /// KeyVault properties for the cluster encryption. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties KeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties KeyVaultProperty { get; set; } /// The name of the key vault key. string KeyVaultPropertyKeyName { get; set; } /// The Uri of the key vault. @@ -518,11 +532,11 @@ internal partial interface IClusterInternal : /// The version of the key vault key. string KeyVaultPropertyKeyVersion { get; set; } /// List of the cluster's language extensions. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtension { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtension { get; set; } /// The list of language extensions. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get; set; } /// Optimized auto scale definition. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale OptimizedAutoscale { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale OptimizedAutoscale { get; set; } /// /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// @@ -534,11 +548,11 @@ internal partial interface IClusterInternal : /// The version of the template defined, for instance 1. int OptimizedAutoscaleVersion { get; set; } /// The cluster properties. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties Property { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } /// The SKU of the cluster. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Sku { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Sku { get; set; } /// The number of instances of the cluster. int? SkuCapacity { get; set; } /// SKU name. @@ -550,11 +564,11 @@ internal partial interface IClusterInternal : /// The reason for the cluster's current state. string StateReason { get; set; } /// The cluster's external tenants. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } /// The cluster URI. string Uri { get; set; } /// Virtual network definition. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get; set; } /// Data management's service public IP address resource id. string VirtualNetworkConfigurationDataManagementPublicIPId { get; set; } /// Engine service's public IP address resource id. diff --git a/src/Kusto/generated/api/Models/Api20200215/Cluster.json.cs b/src/Kusto/generated/api/Models/Api20200614/Cluster.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/Cluster.json.cs rename to src/Kusto/generated/api/Models/Api20200614/Cluster.json.cs index e18f0eb0da05..0ad949fb9057 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Cluster.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Cluster.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -59,21 +59,21 @@ internal Cluster(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObjec return; } __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.TrackedResource(json); - {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity.FromJson(__jsonIdentity) : Identity;} - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties.FromJson(__jsonProperties) : Property;} - {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku.FromJson(__jsonSku) : Sku;} + {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity.FromJson(__jsonIdentity) : Identity;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties.FromJson(__jsonProperties) : Property;} + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku.FromJson(__jsonSku) : Sku;} {_zone = If( json?.PropertyT("zones"), out var __jsonZones) ? If( __jsonZones as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Zone;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new Cluster(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.PowerShell.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.PowerShell.cs index 46eb356f1aa9..77c4c67bab9d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterCheckNameRequest partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,13 +61,13 @@ internal ClusterCheckNameRequest(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -80,33 +80,33 @@ internal ClusterCheckNameRequest(global::System.Management.Automation.PSObject c return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterCheckNameRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterCheckNameRequest(content); } @@ -116,7 +116,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.TypeConverter.cs index 6a676cf0e04f..7a66413c3713 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.cs index e2f5b62baf3b..0ad43983218e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The result returned from a cluster check name availability request. public partial class ClusterCheckNameRequest : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequestInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.json.cs index cd85e76b84db..2cc416579883 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterCheckNameRequest.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterCheckNameRequest.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -64,13 +64,13 @@ internal ClusterCheckNameRequest(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtim } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterCheckNameRequest(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/ClusterListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterListResult.PowerShell.cs index 6b429d4428f6..d50e165ef6fe 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal ClusterListResult(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,32 +79,32 @@ internal ClusterListResult(global::System.Management.Automation.PSObject content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterListResult(content); } @@ -114,7 +114,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterListResult.TypeConverter.cs index a3aea5344548..266d45439fbc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.cs similarity index 86% rename from src/Kusto/generated/api/Models/Api20200215/ClusterListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterListResult.cs index 02227a749b95..3330edb62580 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto clusters operation response. public partial class ClusterListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster[] _value; /// The list of Kusto clusters. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public ClusterListResult() @@ -31,8 +31,8 @@ public partial interface IClusterListResult : ReadOnly = false, Description = @"The list of Kusto clusters.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster[] Value { get; set; } } /// The list Kusto clusters operation response. @@ -40,7 +40,7 @@ internal partial interface IClusterListResultInternal { /// The list of Kusto clusters. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/ClusterListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterListResult.json.cs index 209fa62c473d..bcda8834b381 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal ClusterListResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Cluster.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Cluster.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.PowerShell.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.PowerShell.cs index ffcf0b4bd2e8..09db4ef83d49 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterPrincipalAssignment partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,22 +61,22 @@ internal ClusterPrincipalAssignment(global::System.Collections.IDictionary conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -89,42 +89,42 @@ internal ClusterPrincipalAssignment(global::System.Management.Automation.PSObjec return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterPrincipalAssignment(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterPrincipalAssignment(content); } @@ -134,7 +134,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.TypeConverter.cs index 0a469e073163..ebe80ef2288c 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.cs index 858f66fc8872..9e6da3499a24 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing a cluster principal assignment. public partial class ClusterPrincipalAssignment : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// @@ -29,16 +29,16 @@ public partial class ClusterPrincipalAssignment : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for PrincipalName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal.PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).PrincipalName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).PrincipalName = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal.PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).PrincipalName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).PrincipalName = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for TenantName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentInternal.TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).TenantName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).TenantName = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentInternal.TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).TenantName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).TenantName = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] @@ -48,38 +48,38 @@ public partial class ClusterPrincipalAssignment : /// The principal ID assigned to the cluster principal. It can be a user email, application ID, or security group name. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).PrincipalId = value; } + public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).PrincipalId = value; } /// The principal name [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).PrincipalName; } + public string PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).PrincipalName; } /// Principal type. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType PrincipalType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).PrincipalType; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).PrincipalType = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType PrincipalType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).PrincipalType; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).PrincipalType = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties _property; /// The cluster principal. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalProperties()); set => this._property = value; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).ProvisioningState; } /// Cluster principal role. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).Role; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).Role = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).Role; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).Role = value; } /// The tenant id of the principal [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).TenantId = value; } + public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).TenantId = value; } /// The tenant name of the principal [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)Property).TenantName; } + public string TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)Property).TenantName; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -183,7 +183,7 @@ internal partial interface IClusterPrincipalAssignmentInternal : /// Principal type. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType PrincipalType { get; set; } /// The cluster principal. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties Property { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } /// Cluster principal role. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.json.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.json.cs index 2dc2b93e8cc4..dd7bf9741215 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignment.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignment.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -59,18 +59,18 @@ internal ClusterPrincipalAssignment(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Run return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterPrincipalAssignment(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.PowerShell.cs similarity index 88% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.PowerShell.cs index 33de85b1b7e7..615b55479a0a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterPrincipalAssignmentCheckNameRequest partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,13 +61,13 @@ internal ClusterPrincipalAssignmentCheckNameRequest(global::System.Collections.I return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -80,35 +80,35 @@ internal ClusterPrincipalAssignmentCheckNameRequest(global::System.Management.Au return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterPrincipalAssignmentCheckNameRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterPrincipalAssignmentCheckNameRequest(content); } @@ -119,7 +119,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.TypeConverter.cs index 29f3882688c0..ea20c14a45a0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -104,14 +104,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.cs index 6008cba73dca..9b4e826c8079 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A principal assignment check name availability request. public partial class ClusterPrincipalAssignmentCheckNameRequest : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequestInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.json.cs index 0009b2b1095b..c53756973d89 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentCheckNameRequest.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentCheckNameRequest.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -64,13 +64,13 @@ internal ClusterPrincipalAssignmentCheckNameRequest(Microsoft.Azure.PowerShell.C } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterPrincipalAssignmentCheckNameRequest(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.PowerShell.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.PowerShell.cs index 704342d25e97..a1a012f9a7b5 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterPrincipalAssignmentListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal ClusterPrincipalAssignmentListResult(global::System.Collections.IDictio return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignmentTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignmentTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,34 +79,34 @@ internal ClusterPrincipalAssignmentListResult(global::System.Management.Automati return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignmentTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignmentTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterPrincipalAssignmentListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterPrincipalAssignmentListResult(content); } @@ -116,7 +116,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.TypeConverter.cs index 1ef2dc9a52f7..d1edd3ef4d50 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -103,14 +103,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.cs index dd25e498f0ca..2ee311098050 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto cluster principal assignments operation response. public partial class ClusterPrincipalAssignmentListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment[] _value; /// The list of Kusto cluster principal assignments. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public ClusterPrincipalAssignmentListResult() @@ -31,8 +31,8 @@ public partial interface IClusterPrincipalAssignmentListResult : ReadOnly = false, Description = @"The list of Kusto cluster principal assignments.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment[] Value { get; set; } } /// The list Kusto cluster principal assignments operation response. @@ -40,7 +40,7 @@ internal partial interface IClusterPrincipalAssignmentListResultInternal { /// The list of Kusto cluster principal assignments. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.json.cs index c1e360b8ea98..edd5b3d7c599 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalAssignmentListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalAssignmentListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal ClusterPrincipalAssignmentListResult(Microsoft.Azure.PowerShell.Cmdlets { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignment.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignment.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterPrincipalAssignmentListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.PowerShell.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.PowerShell.cs index bde9a9a4d014..6e640cfb2359 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterPrincipalProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,18 +61,18 @@ internal ClusterPrincipalProperties(global::System.Collections.IDictionary conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -85,38 +85,38 @@ internal ClusterPrincipalProperties(global::System.Management.Automation.PSObjec return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ClusterPrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterPrincipalProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterPrincipalProperties(content); } @@ -126,7 +126,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.TypeConverter.cs index 20eb1c1fad4c..67df1d66ffd0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.cs index 0c1886abe857..e38e46cb90ee 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.cs @@ -1,21 +1,21 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A class representing cluster principal property. public partial class ClusterPrincipalProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal { /// Internal Acessors for PrincipalName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal.PrincipalName { get => this._principalName; set { {_principalName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal.PrincipalName { get => this._principalName; set { {_principalName = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for TenantName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalPropertiesInternal.TenantName { get => this._tenantName; set { {_tenantName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalPropertiesInternal.TenantName { get => this._tenantName; set { {_tenantName = value;} } } /// Backing field for property. private string _principalId; diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.json.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.json.cs index c1a65f855784..702702c26e44 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterPrincipalProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterPrincipalProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -69,13 +69,13 @@ internal ClusterPrincipalProperties(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Run } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterPrincipalProperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.PowerShell.cs similarity index 64% rename from src/Kusto/generated/api/Models/Api20200215/ClusterProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterProperties.PowerShell.cs index 2fcdc79a9c70..41275331d860 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,35 +61,36 @@ internal ClusterProperties(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsListTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscaleTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).DataIngestionUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).StateReason, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenantTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).Uri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsListTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscaleTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).DataIngestionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDoubleEncryption = (bool?) content.GetValueForProperty("EnableDoubleEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDoubleEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).StateReason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenantTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).Uri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -102,55 +103,56 @@ internal ClusterProperties(global::System.Management.Automation.PSObject content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsListTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscaleTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).DataIngestionUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).StateReason, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenantTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).Uri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsListTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscaleTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).DataIngestionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDoubleEncryption = (bool?) content.GetValueForProperty("EnableDoubleEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableDoubleEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).StateReason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenantTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).Uri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterProperties(content); } @@ -160,7 +162,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterProperties.TypeConverter.cs index 6ef3022fa7a4..f22f069977a4 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.cs similarity index 82% rename from src/Kusto/generated/api/Models/Api20200215/ClusterProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterProperties.cs index 367a92fe616a..61fb5a5c3359 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing the Kusto cluster properties. public partial class ClusterProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal { /// Backing field for property. @@ -22,6 +22,13 @@ public partial class ClusterProperties : [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] public bool? EnableDiskEncryption { get => this._enableDiskEncryption; set => this._enableDiskEncryption = value; } + /// Backing field for property. + private bool? _enableDoubleEncryption; + + /// A boolean value that indicates if double encryption is enabled. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] + public bool? EnableDoubleEncryption { get => this._enableDoubleEncryption; set => this._enableDoubleEncryption = value; } + /// Backing field for property. private bool? _enablePurge; @@ -37,86 +44,86 @@ public partial class ClusterProperties : public bool? EnableStreamingIngest { get => this._enableStreamingIngest; set => this._enableStreamingIngest = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties _keyVaultProperty; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties _keyVaultProperty; /// KeyVault properties for the cluster encryption. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties KeyVaultProperty { get => (this._keyVaultProperty = this._keyVaultProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultProperties()); set => this._keyVaultProperty = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties KeyVaultProperty { get => (this._keyVaultProperty = this._keyVaultProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultProperties()); set => this._keyVaultProperty = value; } /// The name of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyName = value; } + public string KeyVaultPropertyKeyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyName = value; } /// The Uri of the key vault. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyVaultUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVaultUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVaultUri = value; } + public string KeyVaultPropertyKeyVaultUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVaultUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVaultUri = value; } /// The version of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVersion = value; } + public string KeyVaultPropertyKeyVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)KeyVaultProperty).KeyVersion = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList _languageExtension; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList _languageExtension; /// List of the cluster's language extensions. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtension { get => (this._languageExtension = this._languageExtension ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList()); set => this._languageExtension = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtension { get => (this._languageExtension = this._languageExtension ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList()); } /// The list of language extensions. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsListInternal)LanguageExtension).Value; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsListInternal)LanguageExtension).Value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsListInternal)LanguageExtension).Value; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsListInternal)LanguageExtension).Value = value; } /// Internal Acessors for DataIngestionUri - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.DataIngestionUri { get => this._dataIngestionUri; set { {_dataIngestionUri = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.DataIngestionUri { get => this._dataIngestionUri; set { {_dataIngestionUri = value;} } } /// Internal Acessors for KeyVaultProperty - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.KeyVaultProperty { get => (this._keyVaultProperty = this._keyVaultProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultProperties()); set { {_keyVaultProperty = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.KeyVaultProperty { get => (this._keyVaultProperty = this._keyVaultProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultProperties()); set { {_keyVaultProperty = value;} } } /// Internal Acessors for LanguageExtension - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.LanguageExtension { get => (this._languageExtension = this._languageExtension ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList()); set { {_languageExtension = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.LanguageExtension { get => (this._languageExtension = this._languageExtension ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList()); set { {_languageExtension = value;} } } /// Internal Acessors for OptimizedAutoscale - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.OptimizedAutoscale { get => (this._optimizedAutoscale = this._optimizedAutoscale ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscale()); set { {_optimizedAutoscale = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.OptimizedAutoscale { get => (this._optimizedAutoscale = this._optimizedAutoscale ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscale()); set { {_optimizedAutoscale = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for State - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.State { get => this._state; set { {_state = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.State { get => this._state; set { {_state = value;} } } /// Internal Acessors for StateReason - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.StateReason { get => this._stateReason; set { {_stateReason = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.StateReason { get => this._stateReason; set { {_stateReason = value;} } } /// Internal Acessors for Uri - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.Uri { get => this._uri; set { {_uri = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.Uri { get => this._uri; set { {_uri = value;} } } /// Internal Acessors for VirtualNetworkConfiguration - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal.VirtualNetworkConfiguration { get => (this._virtualNetworkConfiguration = this._virtualNetworkConfiguration ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfiguration()); set { {_virtualNetworkConfiguration = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal.VirtualNetworkConfiguration { get => (this._virtualNetworkConfiguration = this._virtualNetworkConfiguration ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfiguration()); set { {_virtualNetworkConfiguration = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale _optimizedAutoscale; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale _optimizedAutoscale; /// Optimized auto scale definition. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale OptimizedAutoscale { get => (this._optimizedAutoscale = this._optimizedAutoscale ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscale()); set => this._optimizedAutoscale = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale OptimizedAutoscale { get => (this._optimizedAutoscale = this._optimizedAutoscale ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscale()); set => this._optimizedAutoscale = value; } /// /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool OptimizedAutoscaleIsEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).IsEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).IsEnabled = value; } + public bool OptimizedAutoscaleIsEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).IsEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).IsEnabled = value; } /// Maximum allowed instances count. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).Maximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).Maximum = value; } + public int OptimizedAutoscaleMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).Maximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).Maximum = value; } /// Minimum allowed instances count. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).Minimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).Minimum = value; } + public int OptimizedAutoscaleMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).Minimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).Minimum = value; } /// The version of the template defined, for instance 1. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).Version; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)OptimizedAutoscale).Version = value; } + public int OptimizedAutoscaleVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).Version; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)OptimizedAutoscale).Version = value; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? _provisioningState; @@ -140,11 +147,11 @@ public partial class ClusterProperties : public string StateReason { get => this._stateReason; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] _trustedExternalTenant; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] _trustedExternalTenant; /// The cluster's external tenants. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get => this._trustedExternalTenant; set => this._trustedExternalTenant = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get => this._trustedExternalTenant; set => this._trustedExternalTenant = value; } /// Backing field for property. private string _uri; @@ -154,23 +161,23 @@ public partial class ClusterProperties : public string Uri { get => this._uri; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration _virtualNetworkConfiguration; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration _virtualNetworkConfiguration; /// Virtual network definition. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get => (this._virtualNetworkConfiguration = this._virtualNetworkConfiguration ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfiguration()); set => this._virtualNetworkConfiguration = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get => (this._virtualNetworkConfiguration = this._virtualNetworkConfiguration ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfiguration()); set => this._virtualNetworkConfiguration = value; } /// Data management's service public IP address resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationDataManagementPublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).DataManagementPublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).DataManagementPublicIPId = value; } + public string VirtualNetworkConfigurationDataManagementPublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).DataManagementPublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).DataManagementPublicIPId = value; } /// Engine service's public IP address resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationEnginePublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).EnginePublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).EnginePublicIPId = value; } + public string VirtualNetworkConfigurationEnginePublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).EnginePublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).EnginePublicIPId = value; } /// The subnet resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationSubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).SubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).SubnetId = value; } + public string VirtualNetworkConfigurationSubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).SubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)VirtualNetworkConfiguration).SubnetId = value; } /// Creates an new instance. public ClusterProperties() @@ -198,6 +205,14 @@ public partial interface IClusterProperties : SerializedName = @"enableDiskEncryption", PossibleTypes = new [] { typeof(bool) })] bool? EnableDiskEncryption { get; set; } + /// A boolean value that indicates if double encryption is enabled. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A boolean value that indicates if double encryption is enabled.", + SerializedName = @"enableDoubleEncryption", + PossibleTypes = new [] { typeof(bool) })] + bool? EnableDoubleEncryption { get; set; } /// A boolean value that indicates if the purge operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -244,8 +259,8 @@ public partial interface IClusterProperties : ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get; set; } /// /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// @@ -310,8 +325,8 @@ public partial interface IClusterProperties : ReadOnly = false, Description = @"The cluster's external tenants.", SerializedName = @"trustedExternalTenants", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } /// The cluster URI. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -354,12 +369,14 @@ internal partial interface IClusterPropertiesInternal string DataIngestionUri { get; set; } /// A boolean value that indicates if the cluster's disks are encrypted. bool? EnableDiskEncryption { get; set; } + /// A boolean value that indicates if double encryption is enabled. + bool? EnableDoubleEncryption { get; set; } /// A boolean value that indicates if the purge operations are enabled. bool? EnablePurge { get; set; } /// A boolean value that indicates if the streaming ingest is enabled. bool? EnableStreamingIngest { get; set; } /// KeyVault properties for the cluster encryption. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties KeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties KeyVaultProperty { get; set; } /// The name of the key vault key. string KeyVaultPropertyKeyName { get; set; } /// The Uri of the key vault. @@ -367,11 +384,11 @@ internal partial interface IClusterPropertiesInternal /// The version of the key vault key. string KeyVaultPropertyKeyVersion { get; set; } /// List of the cluster's language extensions. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtension { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtension { get; set; } /// The list of language extensions. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get; set; } /// Optimized auto scale definition. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale OptimizedAutoscale { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale OptimizedAutoscale { get; set; } /// /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// @@ -389,11 +406,11 @@ internal partial interface IClusterPropertiesInternal /// The reason for the cluster's current state. string StateReason { get; set; } /// The cluster's external tenants. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } /// The cluster URI. string Uri { get; set; } /// Virtual network definition. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get; set; } /// Data management's service public IP address resource id. string VirtualNetworkConfigurationDataManagementPublicIPId { get; set; } /// Engine service's public IP address resource id. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.json.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/ClusterProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterProperties.json.cs index cc70265f9f4e..27e171e57f8e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,30 +58,31 @@ internal ClusterProperties(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json { return; } - {_keyVaultProperty = If( json?.PropertyT("keyVaultProperties"), out var __jsonKeyVaultProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultProperties.FromJson(__jsonKeyVaultProperties) : KeyVaultProperty;} - {_languageExtension = If( json?.PropertyT("languageExtensions"), out var __jsonLanguageExtensions) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList.FromJson(__jsonLanguageExtensions) : LanguageExtension;} - {_optimizedAutoscale = If( json?.PropertyT("optimizedAutoscale"), out var __jsonOptimizedAutoscale) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscale.FromJson(__jsonOptimizedAutoscale) : OptimizedAutoscale;} - {_virtualNetworkConfiguration = If( json?.PropertyT("virtualNetworkConfiguration"), out var __jsonVirtualNetworkConfiguration) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfiguration.FromJson(__jsonVirtualNetworkConfiguration) : VirtualNetworkConfiguration;} + {_keyVaultProperty = If( json?.PropertyT("keyVaultProperties"), out var __jsonKeyVaultProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultProperties.FromJson(__jsonKeyVaultProperties) : KeyVaultProperty;} + {_languageExtension = If( json?.PropertyT("languageExtensions"), out var __jsonLanguageExtensions) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList.FromJson(__jsonLanguageExtensions) : LanguageExtension;} + {_optimizedAutoscale = If( json?.PropertyT("optimizedAutoscale"), out var __jsonOptimizedAutoscale) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscale.FromJson(__jsonOptimizedAutoscale) : OptimizedAutoscale;} + {_virtualNetworkConfiguration = If( json?.PropertyT("virtualNetworkConfiguration"), out var __jsonVirtualNetworkConfiguration) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfiguration.FromJson(__jsonVirtualNetworkConfiguration) : VirtualNetworkConfiguration;} {_dataIngestionUri = If( json?.PropertyT("dataIngestionUri"), out var __jsonDataIngestionUri) ? (string)__jsonDataIngestionUri : (string)DataIngestionUri;} {_enableDiskEncryption = If( json?.PropertyT("enableDiskEncryption"), out var __jsonEnableDiskEncryption) ? (bool?)__jsonEnableDiskEncryption : EnableDiskEncryption;} + {_enableDoubleEncryption = If( json?.PropertyT("enableDoubleEncryption"), out var __jsonEnableDoubleEncryption) ? (bool?)__jsonEnableDoubleEncryption : EnableDoubleEncryption;} {_enablePurge = If( json?.PropertyT("enablePurge"), out var __jsonEnablePurge) ? (bool?)__jsonEnablePurge : EnablePurge;} {_enableStreamingIngest = If( json?.PropertyT("enableStreamingIngest"), out var __jsonEnableStreamingIngest) ? (bool?)__jsonEnableStreamingIngest : EnableStreamingIngest;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} {_state = If( json?.PropertyT("state"), out var __jsonState) ? (string)__jsonState : (string)State;} {_stateReason = If( json?.PropertyT("stateReason"), out var __jsonStateReason) ? (string)__jsonStateReason : (string)StateReason;} - {_trustedExternalTenant = If( json?.PropertyT("trustedExternalTenants"), out var __jsonTrustedExternalTenants) ? If( __jsonTrustedExternalTenants as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenant.FromJson(__u) )) ))() : null : TrustedExternalTenant;} + {_trustedExternalTenant = If( json?.PropertyT("trustedExternalTenants"), out var __jsonTrustedExternalTenants) ? If( __jsonTrustedExternalTenants as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenant.FromJson(__u) )) ))() : null : TrustedExternalTenant;} {_uri = If( json?.PropertyT("uri"), out var __jsonUri) ? (string)__jsonUri : (string)Uri;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterProperties(json) : null; } @@ -106,7 +107,10 @@ public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode ToJson(Mic return container; } AddIf( null != this._keyVaultProperty ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) this._keyVaultProperty.ToJson(null,serializationMode) : null, "keyVaultProperties" ,container.Add ); - AddIf( null != this._languageExtension ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) this._languageExtension.ToJson(null,serializationMode) : null, "languageExtensions" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._languageExtension ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) this._languageExtension.ToJson(null,serializationMode) : null, "languageExtensions" ,container.Add ); + } AddIf( null != this._optimizedAutoscale ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) this._optimizedAutoscale.ToJson(null,serializationMode) : null, "optimizedAutoscale" ,container.Add ); AddIf( null != this._virtualNetworkConfiguration ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) this._virtualNetworkConfiguration.ToJson(null,serializationMode) : null, "virtualNetworkConfiguration" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.SerializationMode.IncludeReadOnly)) @@ -114,6 +118,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode ToJson(Mic AddIf( null != (((object)this._dataIngestionUri)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._dataIngestionUri.ToString()) : null, "dataIngestionUri" ,container.Add ); } AddIf( null != this._enableDiskEncryption ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonBoolean((bool)this._enableDiskEncryption) : null, "enableDiskEncryption" ,container.Add ); + AddIf( null != this._enableDoubleEncryption ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonBoolean((bool)this._enableDoubleEncryption) : null, "enableDoubleEncryption" ,container.Add ); AddIf( null != this._enablePurge ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonBoolean((bool)this._enablePurge) : null, "enablePurge" ,container.Add ); AddIf( null != this._enableStreamingIngest ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonBoolean((bool)this._enableStreamingIngest) : null, "enableStreamingIngest" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.SerializationMode.IncludeReadOnly)) diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.PowerShell.cs similarity index 63% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.PowerShell.cs index 1d61f361ab0d..669292e1b877 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterUpdate partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,50 +61,51 @@ internal ClusterUpdate(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSkuTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdateTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdateTagsTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityTenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscaleTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).DataIngestionUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).StateReason, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsListTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Uri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenantTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscaleTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).DataIngestionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDoubleEncryption = (bool?) content.GetValueForProperty("EnableDoubleEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDoubleEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).StateReason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsListTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Uri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenantTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -117,70 +118,71 @@ internal ClusterUpdate(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSkuTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdateTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSkuTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdateTagsTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityTenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OptimizedAutoscaleTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.VirtualNetworkConfigurationTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).DataIngestionUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.KeyVaultPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).StateReason, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsListTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).Uri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.TrustedExternalTenantTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityTenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscale = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale) content.GetValueForProperty("OptimizedAutoscale",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscale, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OptimizedAutoscaleTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).State = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State?) content.GetValueForProperty("State",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).State, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration) content.GetValueForProperty("VirtualNetworkConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.VirtualNetworkConfigurationTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).DataIngestionUri = (string) content.GetValueForProperty("DataIngestionUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).DataIngestionUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDiskEncryption = (bool?) content.GetValueForProperty("EnableDiskEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDiskEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDoubleEncryption = (bool?) content.GetValueForProperty("EnableDoubleEncryption",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableDoubleEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnablePurge = (bool?) content.GetValueForProperty("EnablePurge",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnablePurge, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableStreamingIngest = (bool?) content.GetValueForProperty("EnableStreamingIngest",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).EnableStreamingIngest, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultProperty, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.KeyVaultPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).StateReason = (string) content.GetValueForProperty("StateReason",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).StateReason, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtension = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList) content.GetValueForProperty("LanguageExtension",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtension, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsListTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Uri = (string) content.GetValueForProperty("Uri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).Uri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyName = (string) content.GetValueForProperty("KeyVaultPropertyKeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId = (string) content.GetValueForProperty("VirtualNetworkConfigurationSubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationSubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion = (string) content.GetValueForProperty("KeyVaultPropertyKeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).TrustedExternalTenant = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[]) content.GetValueForProperty("TrustedExternalTenant",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).TrustedExternalTenant, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.TrustedExternalTenantTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri = (string) content.GetValueForProperty("KeyVaultPropertyKeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).KeyVaultPropertyKeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum = (int) content.GetValueForProperty("OptimizedAutoscaleMinimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMinimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleVersion = (int) content.GetValueForProperty("OptimizedAutoscaleVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleVersion, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationDataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationDataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId = (string) content.GetValueForProperty("VirtualNetworkConfigurationEnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).VirtualNetworkConfigurationEnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum = (int) content.GetValueForProperty("OptimizedAutoscaleMaximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleMaximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled = (bool) content.GetValueForProperty("OptimizedAutoscaleIsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).OptimizedAutoscaleIsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtensionValue = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("LanguageExtensionValue",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal)this).LanguageExtensionValue, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterUpdate(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterUpdate(content); } @@ -190,7 +192,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.TypeConverter.cs index ed15986b0dd8..4813dbcc7d8e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.cs similarity index 80% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.cs index 931812549b10..e20c697f7ead 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing an update to a Kusto cluster. public partial class ClusterUpdate : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// @@ -15,19 +15,23 @@ public partial class ClusterUpdate : /// The cluster data ingestion URI. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).DataIngestionUri; } + public string DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).DataIngestionUri; } /// A boolean value that indicates if the cluster's disks are encrypted. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool? EnableDiskEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableDiskEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableDiskEncryption = value; } + public bool? EnableDiskEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDiskEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDiskEncryption = value; } + + /// A boolean value that indicates if double encryption is enabled. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] + public bool? EnableDoubleEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDoubleEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableDoubleEncryption = value; } /// A boolean value that indicates if the purge operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool? EnablePurge { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnablePurge; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnablePurge = value; } + public bool? EnablePurge { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnablePurge; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnablePurge = value; } /// A boolean value that indicates if the streaming ingest is enabled. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool? EnableStreamingIngest { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableStreamingIngest; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).EnableStreamingIngest = value; } + public bool? EnableStreamingIngest { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableStreamingIngest; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).EnableStreamingIngest = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -36,46 +40,46 @@ public partial class ClusterUpdate : public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__resource).Id; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity _identity; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity _identity; /// The identity of the cluster, if configured. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity()); set => this._identity = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity()); set => this._identity = value; } /// The principal ID of resource identity. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).PrincipalId; } + public string IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).PrincipalId; } /// The tenant ID of resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).TenantId; } + public string IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).TenantId; } /// The identity type. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).Type = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).Type = value; } /// /// The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).UserAssignedIdentity = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).UserAssignedIdentity = value; } /// The name of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName = value; } + public string KeyVaultPropertyKeyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyName = value; } /// The Uri of the key vault. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyVaultUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri = value; } + public string KeyVaultPropertyKeyVaultUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVaultUri = value; } /// The version of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string KeyVaultPropertyKeyVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion = value; } + public string KeyVaultPropertyKeyVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultPropertyKeyVersion = value; } /// The list of language extensions. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtensionValue; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtensionValue = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtensionValue; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtensionValue = value; } /// Backing field for property. private string _location; @@ -94,46 +98,46 @@ public partial class ClusterUpdate : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__resource).Type = value; } /// Internal Acessors for DataIngestionUri - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).DataIngestionUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).DataIngestionUri = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.DataIngestionUri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).DataIngestionUri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).DataIngestionUri = value; } /// Internal Acessors for Identity - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity()); set { {_identity = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity()); set { {_identity = value;} } } /// Internal Acessors for IdentityPrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).PrincipalId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).PrincipalId = value; } /// Internal Acessors for IdentityTenantId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)Identity).TenantId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)Identity).TenantId = value; } /// Internal Acessors for KeyVaultProperty - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.KeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).KeyVaultProperty = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.KeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).KeyVaultProperty = value; } /// Internal Acessors for LanguageExtension - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.LanguageExtension { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtension; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).LanguageExtension = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.LanguageExtension { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtension; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).LanguageExtension = value; } /// Internal Acessors for OptimizedAutoscale - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.OptimizedAutoscale { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscale; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscale = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.OptimizedAutoscale { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscale; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscale = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for Sku - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku()); set { {_sku = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku()); set { {_sku = value;} } } /// Internal Acessors for State - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).State; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).State = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).State; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).State = value; } /// Internal Acessors for StateReason - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).StateReason; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).StateReason = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).StateReason; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).StateReason = value; } /// Internal Acessors for Uri - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).Uri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).Uri = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).Uri; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).Uri = value; } /// Internal Acessors for VirtualNetworkConfiguration - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateInternal.VirtualNetworkConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateInternal.VirtualNetworkConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfiguration = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] @@ -143,68 +147,68 @@ public partial class ClusterUpdate : /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public bool OptimizedAutoscaleIsEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled = value; } + public bool OptimizedAutoscaleIsEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleIsEnabled = value; } /// Maximum allowed instances count. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum = value; } + public int OptimizedAutoscaleMaximum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMaximum = value; } /// Minimum allowed instances count. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum = value; } + public int OptimizedAutoscaleMinimum { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleMinimum = value; } /// The version of the template defined, for instance 1. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int OptimizedAutoscaleVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion = value; } + public int OptimizedAutoscaleVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).OptimizedAutoscaleVersion = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties _property; /// The cluster properties. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties()); set => this._property = value; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).ProvisioningState; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku _sku; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku _sku; /// The SKU of the cluster. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku()); set => this._sku = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku()); set => this._sku = value; } /// The number of instances of the cluster. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Capacity = value; } + public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Capacity = value; } /// SKU name. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Name = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuName SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Name = value; } /// SKU tier. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSkuInternal)Sku).Tier = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.AzureSkuTier SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSkuInternal)Sku).Tier = value; } /// The state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).State; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.State? State { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).State; } /// The reason for the cluster's current state. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).StateReason; } + public string StateReason { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).StateReason; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags _tag; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags _tag; /// Resource tags. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdateTags()); set => this._tag = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdateTags()); set => this._tag = value; } /// The cluster's external tenants. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).TrustedExternalTenant; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).TrustedExternalTenant = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).TrustedExternalTenant; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).TrustedExternalTenant = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -214,19 +218,19 @@ public partial class ClusterUpdate : /// The cluster URI. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).Uri; } + public string Uri { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).Uri; } /// Data management's service public IP address resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationDataManagementPublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId = value; } + public string VirtualNetworkConfigurationDataManagementPublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationDataManagementPublicIPId = value; } /// Engine service's public IP address resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationEnginePublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId = value; } + public string VirtualNetworkConfigurationEnginePublicIPId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationEnginePublicIPId = value; } /// The subnet resource id. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string VirtualNetworkConfigurationSubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId = value; } + public string VirtualNetworkConfigurationSubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPropertiesInternal)Property).VirtualNetworkConfigurationSubnetId = value; } /// Creates an new instance. public ClusterUpdate() @@ -267,6 +271,14 @@ public partial interface IClusterUpdate : SerializedName = @"enableDiskEncryption", PossibleTypes = new [] { typeof(bool) })] bool? EnableDiskEncryption { get; set; } + /// A boolean value that indicates if double encryption is enabled. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A boolean value that indicates if double encryption is enabled.", + SerializedName = @"enableDoubleEncryption", + PossibleTypes = new [] { typeof(bool) })] + bool? EnableDoubleEncryption { get; set; } /// A boolean value that indicates if the purge operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -316,8 +328,8 @@ public partial interface IClusterUpdate : ReadOnly = false, Description = @"The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } /// The name of the key vault key. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = true, @@ -348,8 +360,8 @@ public partial interface IClusterUpdate : ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get; set; } /// Resource location. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -446,16 +458,16 @@ public partial interface IClusterUpdate : ReadOnly = false, Description = @"Resource tags.", SerializedName = @"tags", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags Tag { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags Tag { get; set; } /// The cluster's external tenants. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, ReadOnly = false, Description = @"The cluster's external tenants.", SerializedName = @"trustedExternalTenants", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } /// The cluster URI. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -498,12 +510,14 @@ internal partial interface IClusterUpdateInternal : string DataIngestionUri { get; set; } /// A boolean value that indicates if the cluster's disks are encrypted. bool? EnableDiskEncryption { get; set; } + /// A boolean value that indicates if double encryption is enabled. + bool? EnableDoubleEncryption { get; set; } /// A boolean value that indicates if the purge operations are enabled. bool? EnablePurge { get; set; } /// A boolean value that indicates if the streaming ingest is enabled. bool? EnableStreamingIngest { get; set; } /// The identity of the cluster, if configured. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity Identity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity Identity { get; set; } /// The principal ID of resource identity. string IdentityPrincipalId { get; set; } /// The tenant ID of resource. @@ -514,9 +528,9 @@ internal partial interface IClusterUpdateInternal : /// The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. /// - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } /// KeyVault properties for the cluster encryption. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties KeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties KeyVaultProperty { get; set; } /// The name of the key vault key. string KeyVaultPropertyKeyName { get; set; } /// The Uri of the key vault. @@ -524,13 +538,13 @@ internal partial interface IClusterUpdateInternal : /// The version of the key vault key. string KeyVaultPropertyKeyVersion { get; set; } /// List of the cluster's language extensions. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtension { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtension { get; set; } /// The list of language extensions. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get; set; } /// Resource location. string Location { get; set; } /// Optimized auto scale definition. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale OptimizedAutoscale { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale OptimizedAutoscale { get; set; } /// /// A boolean value that indicate if the optimized autoscale feature is enabled or not. /// @@ -542,11 +556,11 @@ internal partial interface IClusterUpdateInternal : /// The version of the template defined, for instance 1. int OptimizedAutoscaleVersion { get; set; } /// The cluster properties. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterProperties Property { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } /// The SKU of the cluster. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureSku Sku { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureSku Sku { get; set; } /// The number of instances of the cluster. int? SkuCapacity { get; set; } /// SKU name. @@ -558,13 +572,13 @@ internal partial interface IClusterUpdateInternal : /// The reason for the cluster's current state. string StateReason { get; set; } /// Resource tags. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags Tag { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags Tag { get; set; } /// The cluster's external tenants. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get; set; } /// The cluster URI. string Uri { get; set; } /// Virtual network definition. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration VirtualNetworkConfiguration { get; set; } /// Data management's service public IP address resource id. string VirtualNetworkConfigurationDataManagementPublicIPId { get; set; } /// Engine service's public IP address resource id. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.json.cs similarity index 94% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.json.cs index 3c74295eaab7..4953b9862c97 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdate.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdate.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -59,22 +59,22 @@ internal ClusterUpdate(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.Jso return; } __resource = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.Resource(json); - {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Identity.FromJson(__jsonIdentity) : Identity;} - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterProperties.FromJson(__jsonProperties) : Property;} - {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureSku.FromJson(__jsonSku) : Sku;} + {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Identity.FromJson(__jsonIdentity) : Identity;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterProperties.FromJson(__jsonProperties) : Property;} + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureSku.FromJson(__jsonSku) : Sku;} {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} - {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdateTags.FromJson(__jsonTags) : Tag;} + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdateTags.FromJson(__jsonTags) : Tag;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterUpdate(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.PowerShell.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.PowerShell.cs index cb2b504a75b5..dc6562ee9a35 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class ClusterUpdateTags partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -67,7 +67,7 @@ internal ClusterUpdateTags(global::System.Collections.IDictionary content) } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -86,27 +86,27 @@ internal ClusterUpdateTags(global::System.Management.Automation.PSObject content } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ClusterUpdateTags(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ClusterUpdateTags(content); } @@ -116,7 +116,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.TypeConverter.cs index 0c48291dcb7c..c8e136992c68 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.cs index cff6adafbd76..dcfd8928e9d7 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Resource tags. public partial class ClusterUpdateTags : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTagsInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTagsInternal { /// Creates an new instance. diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.dictionary.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.dictionary.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.dictionary.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.dictionary.cs index e4be5644f3ad..3e79effc513a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.dictionary.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.dictionary.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -65,6 +65,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdateTags source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdateTags source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.json.cs b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.json.cs index 40d02ac2d162..429a5d50e585 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ClusterUpdateTags.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ClusterUpdateTags.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -64,13 +64,13 @@ internal ClusterUpdateTags(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ClusterUpdateTags(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.PowerShell.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.PowerShell.cs index 03833b47cf57..5e9715b24c7f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -47,7 +47,7 @@ public partial class ComponentsSgqdofSchemasIdentityPropertiesUserassignedidenti partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -60,13 +60,13 @@ internal ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAddition return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,35 +79,35 @@ internal ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAddition return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal)this).PrincipalId, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties(content); } @@ -118,7 +118,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICompo /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.TypeConverter.cs index b14018d5b186..f8cc87534798 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// an instance of , or /// null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.cs b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.cs rename to src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.cs index ab39e4573f90..306f7a88275b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.cs @@ -1,10 +1,10 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; public partial class ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal { /// Backing field for property. @@ -15,10 +15,10 @@ public partial class ComponentsSgqdofSchemasIdentityPropertiesUserassignedidenti public string ClientId { get => this._clientId; } /// Internal Acessors for ClientId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal.ClientId { get => this._clientId; set { {_clientId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal.ClientId { get => this._clientId; set { {_clientId = value;} } } /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalpropertiesInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } /// Backing field for property. private string _principalId; diff --git a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.json.cs index b8a04002b025..65e9dfecf5c2 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -64,13 +64,13 @@ internal ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAddition } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnection.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnection.PowerShell.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/DataConnection.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnection.PowerShell.cs index 47a8ddb5f3e5..0aa25d052fe3 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnection.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnection.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DataConnection partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,8 +61,8 @@ internal DataConnection(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); @@ -70,7 +70,7 @@ internal DataConnection(global::System.Collections.IDictionary content) } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -83,8 +83,8 @@ internal DataConnection(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); @@ -92,27 +92,27 @@ internal DataConnection(global::System.Management.Automation.PSObject content) } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DataConnection(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DataConnection(content); } @@ -122,7 +122,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataC /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnection.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnection.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DataConnection.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnection.TypeConverter.cs index 17b86a8dcc7e..14aa82105865 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnection.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnection.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnection.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnection.cs similarity index 99% rename from src/Kusto/generated/api/Models/Api20200215/DataConnection.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnection.cs index 42da2daf48da..30b143d4f995 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnection.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnection.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing an data connection. public partial class DataConnection : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnection.json.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnection.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DataConnection.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnection.json.cs index a2f61def9a8f..1500fe87c85e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnection.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnection.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -65,15 +65,15 @@ internal DataConnection(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.Js } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection. - /// Note: the Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection interface is polymorphic, and the + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection interface is polymorphic, and the /// precise model class that will get deserialized is determined at runtime based on the payload. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { if (!(node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json)) { diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.PowerShell.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.PowerShell.cs index a55fb7168163..257f832f3d57 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DataConnectionCheckNameRequest partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,13 +61,13 @@ internal DataConnectionCheckNameRequest(global::System.Collections.IDictionary c return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -80,35 +80,35 @@ internal DataConnectionCheckNameRequest(global::System.Management.Automation.PSO return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DataConnectionCheckNameRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DataConnectionCheckNameRequest(content); } @@ -118,7 +118,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataC /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.TypeConverter.cs index 5b664eaa23b0..8c0e9952ebbb 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.cs index 748dbbd9b211..0c542b8f4092 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A data connection check name availability request. public partial class DataConnectionCheckNameRequest : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequestInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.json.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.json.cs index bbfdcd254eb8..dec2387cd65b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionCheckNameRequest.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionCheckNameRequest.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -64,13 +64,13 @@ internal DataConnectionCheckNameRequest(Microsoft.Azure.PowerShell.Cmdlets.Kusto } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DataConnectionCheckNameRequest(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.PowerShell.cs index 2836bbd0020f..de0c7a791206 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DataConnectionListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DataConnectionListResult(global::System.Collections.IDictionary content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,32 +79,32 @@ internal DataConnectionListResult(global::System.Management.Automation.PSObject return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DataConnectionListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DataConnectionListResult(content); } @@ -114,7 +114,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataC /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.TypeConverter.cs index 573c86bde07b..88b5fc8f6afe 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.cs similarity index 79% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.cs index 761204a14b8a..4fee13de8c28 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto data connections operation response. public partial class DataConnectionListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection[] _value; /// The list of Kusto data connections. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DataConnectionListResult() @@ -31,8 +31,8 @@ public partial interface IDataConnectionListResult : ReadOnly = false, Description = @"The list of Kusto data connections.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection),typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection),typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection),typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection),typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection),typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection),typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection[] Value { get; set; } } /// The list Kusto data connections operation response. @@ -40,7 +40,7 @@ internal partial interface IDataConnectionListResultInternal { /// The list of Kusto data connections. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.json.cs index 6a5737e4f7b7..24c010fe5cd0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal DataConnectionListResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runti { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DataConnectionListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.PowerShell.cs similarity index 78% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.PowerShell.cs index 12a69774b369..bb9ed7c5863f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DataConnectionValidation partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,18 +61,18 @@ internal DataConnectionValidation(global::System.Collections.IDictionary content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).DataConnectionName = (string) content.GetValueForProperty("DataConnectionName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).DataConnectionName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).DataConnectionName = (string) content.GetValueForProperty("DataConnectionName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).DataConnectionName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Location, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -85,38 +85,38 @@ internal DataConnectionValidation(global::System.Management.Automation.PSObject return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).DataConnectionName = (string) content.GetValueForProperty("DataConnectionName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).DataConnectionName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Type, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).DataConnectionName = (string) content.GetValueForProperty("DataConnectionName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).DataConnectionName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal)this).Location, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DataConnectionValidation(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DataConnectionValidation(content); } @@ -126,7 +126,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataC /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.TypeConverter.cs index 290d5bdd6338..fc9ee373516b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.cs similarity index 90% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.cs index 3bdfa6c6d4ad..9220a18ce58e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing an data connection validation. public partial class DataConnectionValidation : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal { /// Backing field for property. @@ -23,34 +23,34 @@ public partial class DataConnectionValidation : /// Kind of the endpoint for the data connection [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)Property).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)Property).Kind = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)Property).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)Property).Kind = value; } /// Resource location. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)Property).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)Property).Location = value; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)Property).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)Property).Location = value; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Id = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Name = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection()); set { {_property = value;} } } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Type = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)Property).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection _property; /// The data connection properties to validate. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection()); set => this._property = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection()); set => this._property = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -139,7 +139,7 @@ internal partial interface IDataConnectionValidationInternal /// The name of the resource string Name { get; set; } /// The data connection properties to validate. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Property { get; set; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. /// diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.json.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.json.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.json.cs index ab2fb1b78eb0..66a7f13b19fa 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidation.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidation.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,19 +58,19 @@ internal DataConnectionValidation(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runti { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection.FromJson(__jsonProperties) : Property;} {_dataConnectionName = If( json?.PropertyT("dataConnectionName"), out var __jsonDataConnectionName) ? (string)__jsonDataConnectionName : (string)DataConnectionName;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DataConnectionValidation(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.PowerShell.cs similarity index 86% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.PowerShell.cs index 0dbe358c81ec..094e2d17f15b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DataConnectionValidationListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DataConnectionValidationListResult(global::System.Collections.IDictiona return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidationResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidationResultTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,34 +79,34 @@ internal DataConnectionValidationListResult(global::System.Management.Automation return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidationResultTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidationResultTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DataConnectionValidationListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DataConnectionValidationListResult(content); } @@ -116,7 +116,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataC /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.TypeConverter.cs index 3d991c141dc0..a727ae5cfb31 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -102,14 +102,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.cs similarity index 83% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.cs index d6d6d6155a20..16d42e880320 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto data connection validation result. public partial class DataConnectionValidationListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult[] _value; /// The list of Kusto data connection validation errors. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DataConnectionValidationListResult() @@ -31,8 +31,8 @@ public partial interface IDataConnectionValidationListResult : ReadOnly = false, Description = @"The list of Kusto data connection validation errors.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult[] Value { get; set; } } /// The list Kusto data connection validation result. @@ -40,7 +40,7 @@ internal partial interface IDataConnectionValidationListResultInternal { /// The list of Kusto data connection validation errors. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.json.cs index dcdc14509610..98816992d24e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal DataConnectionValidationListResult(Microsoft.Azure.PowerShell.Cmdlets.K { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidationResult.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidationResult.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DataConnectionValidationListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.PowerShell.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.PowerShell.cs index e5fe70557b8a..3603bd89c40a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DataConnectionValidationResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DataConnectionValidationResult(global::System.Collections.IDictionary c return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResultInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResultInternal)this).ErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResultInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResultInternal)this).ErrorMessage, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,34 +79,34 @@ internal DataConnectionValidationResult(global::System.Management.Automation.PSO return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResultInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResultInternal)this).ErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResultInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResultInternal)this).ErrorMessage, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DataConnectionValidationResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DataConnectionValidationResult(content); } @@ -116,7 +116,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataC /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.TypeConverter.cs index 59852f034a11..c840039c944d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.cs index fbb1ec7f51dc..5e984ce8b916 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The result returned from a data connection validation request. public partial class DataConnectionValidationResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResultInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.json.cs index f7957bad86ae..41aae57aa25a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DataConnectionValidationResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DataConnectionValidationResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -63,13 +63,13 @@ internal DataConnectionValidationResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DataConnectionValidationResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/Database.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/Database.PowerShell.cs similarity index 88% rename from src/Kusto/generated/api/Models/Api20200215/Database.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/Database.PowerShell.cs index 14da93362b3d..82188277a64c 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Database.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Database.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class Database partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,8 +61,8 @@ internal Database(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); @@ -70,7 +70,7 @@ internal Database(global::System.Collections.IDictionary content) } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -83,8 +83,8 @@ internal Database(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); @@ -92,27 +92,27 @@ internal Database(global::System.Management.Automation.PSObject content) } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Database(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Database(content); } @@ -122,7 +122,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/Database.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/Database.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/Database.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/Database.TypeConverter.cs index 21c91621aab3..1176742bba0f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Database.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Database.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/Database.cs b/src/Kusto/generated/api/Models/Api20200614/Database.cs similarity index 99% rename from src/Kusto/generated/api/Models/Api20200215/Database.cs rename to src/Kusto/generated/api/Models/Api20200614/Database.cs index 3e5325b9142e..df7ef6edac80 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Database.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Database.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing a Kusto database. public partial class Database : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// diff --git a/src/Kusto/generated/api/Models/Api20200215/Database.json.cs b/src/Kusto/generated/api/Models/Api20200614/Database.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/Database.json.cs rename to src/Kusto/generated/api/Models/Api20200614/Database.json.cs index 727f3aaa2141..3750782cd7a7 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Database.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Database.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -65,15 +65,15 @@ internal Database(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObje } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase. - /// Note: the Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase interface is polymorphic, and the precise + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase interface is polymorphic, and the precise /// model class that will get deserialized is determined at runtime based on the payload. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { if (!(node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json)) { diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.PowerShell.cs index d661f82edbcb..0eda25ca1ba2 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabaseListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DatabaseListResult(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,32 +79,32 @@ internal DatabaseListResult(global::System.Management.Automation.PSObject conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabaseListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabaseListResult(content); } @@ -114,7 +114,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.TypeConverter.cs index b0910ba8c272..4a4d0f38bb26 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.cs similarity index 86% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.cs index fa35f5362fb9..a8226ae5b9da 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto databases operation response. public partial class DatabaseListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase[] _value; /// The list of Kusto databases. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DatabaseListResult() @@ -31,8 +31,8 @@ public partial interface IDatabaseListResult : ReadOnly = false, Description = @"The list of Kusto databases.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase[] Value { get; set; } } /// The list Kusto databases operation response. @@ -40,7 +40,7 @@ internal partial interface IDatabaseListResultInternal { /// The list of Kusto databases. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.json.cs index 64dafbc7df70..59ddb3c50e21 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal DatabaseListResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Jso { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabaseListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.PowerShell.cs similarity index 80% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.PowerShell.cs index 97cf6292683a..7aed30ae993f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabasePrincipal partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,18 +61,18 @@ internal DatabasePrincipal(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).AppId = (string) content.GetValueForProperty("AppId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).AppId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Email = (string) content.GetValueForProperty("Email",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Email, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Fqn = (string) content.GetValueForProperty("Fqn",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Fqn, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).AppId = (string) content.GetValueForProperty("AppId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).AppId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Email = (string) content.GetValueForProperty("Email",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Email, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Fqn = (string) content.GetValueForProperty("Fqn",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Fqn, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -85,38 +85,38 @@ internal DatabasePrincipal(global::System.Management.Automation.PSObject content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).AppId = (string) content.GetValueForProperty("AppId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).AppId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Email = (string) content.GetValueForProperty("Email",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Email, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Fqn = (string) content.GetValueForProperty("Fqn",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Fqn, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).AppId = (string) content.GetValueForProperty("AppId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).AppId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Email = (string) content.GetValueForProperty("Email",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Email, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Fqn = (string) content.GetValueForProperty("Fqn",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Fqn, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabasePrincipal(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabasePrincipal(content); } @@ -126,7 +126,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.TypeConverter.cs index aa0e7d5f2beb..7bf43df1ba85 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.cs index 8c89bdaa23cc..069a0a11f6b8 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A class representing database principal entity. public partial class DatabasePrincipal : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal { /// Backing field for property. @@ -30,7 +30,7 @@ public partial class DatabasePrincipal : public string Fqn { get => this._fqn; set => this._fqn = value; } /// Internal Acessors for TenantName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalInternal.TenantName { get => this._tenantName; set { {_tenantName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalInternal.TenantName { get => this._tenantName; set { {_tenantName = value;} } } /// Backing field for property. private string _name; diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.json.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.json.cs index bd26b4597d2c..4fd1f0d0b4ed 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipal.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipal.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -69,13 +69,13 @@ internal DatabasePrincipal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabasePrincipal(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.PowerShell.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.PowerShell.cs index ccf18a272a6d..174de31aaf54 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabasePrincipalAssignment partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,22 +61,22 @@ internal DatabasePrincipalAssignment(global::System.Collections.IDictionary cont return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -89,42 +89,42 @@ internal DatabasePrincipalAssignment(global::System.Management.Automation.PSObje return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabasePrincipalAssignment(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabasePrincipalAssignment(content); } @@ -134,7 +134,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.TypeConverter.cs index dd79ff379048..05d13d2a8f48 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.cs index bb86a1cfb26f..60ba4facff96 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing a database principal assignment. public partial class DatabasePrincipalAssignment : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// @@ -29,16 +29,16 @@ public partial class DatabasePrincipalAssignment : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for PrincipalName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal.PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).PrincipalName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).PrincipalName = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal.PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).PrincipalName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).PrincipalName = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for TenantName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentInternal.TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).TenantName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).TenantName = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentInternal.TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).TenantName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).TenantName = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] @@ -48,38 +48,38 @@ public partial class DatabasePrincipalAssignment : /// The principal ID assigned to the database principal. It can be a user email, application ID, or security group name. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).PrincipalId = value; } + public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).PrincipalId = value; } /// The principal name [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).PrincipalName; } + public string PrincipalName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).PrincipalName; } /// Principal type. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType PrincipalType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).PrincipalType; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).PrincipalType = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType PrincipalType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).PrincipalType; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).PrincipalType = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties _property; /// The database principal. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalProperties()); set => this._property = value; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).ProvisioningState; } /// Database principal role. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).Role; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).Role = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).Role; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).Role = value; } /// The tenant id of the principal [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).TenantId = value; } + public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).TenantId = value; } /// The tenant name of the principal [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)Property).TenantName; } + public string TenantName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)Property).TenantName; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -183,7 +183,7 @@ internal partial interface IDatabasePrincipalAssignmentInternal : /// Principal type. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType PrincipalType { get; set; } /// The database principal. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties Property { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } /// Database principal role. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.json.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.json.cs index 001396a6585b..b5e40c7a30ae 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignment.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignment.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -59,18 +59,18 @@ internal DatabasePrincipalAssignment(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Ru return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabasePrincipalAssignment(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.PowerShell.cs similarity index 88% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.PowerShell.cs index 2d536aec72ab..7013130b8681 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabasePrincipalAssignmentCheckNameRequest partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,13 +61,13 @@ internal DatabasePrincipalAssignmentCheckNameRequest(global::System.Collections. return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -80,35 +80,35 @@ internal DatabasePrincipalAssignmentCheckNameRequest(global::System.Management.A return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Type.CreateFrom); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabasePrincipalAssignmentCheckNameRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabasePrincipalAssignmentCheckNameRequest(content); } @@ -119,7 +119,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.TypeConverter.cs index 1dd13eac7ab1..a0c348e348e7 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -104,14 +104,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.cs index 63cbe047de12..f06d23118b32 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A principal assignment check name availability request. public partial class DatabasePrincipalAssignmentCheckNameRequest : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequestInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.json.cs index 34342bb3accb..b4702910400b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentCheckNameRequest.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentCheckNameRequest.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -64,13 +64,13 @@ internal DatabasePrincipalAssignmentCheckNameRequest(Microsoft.Azure.PowerShell. } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabasePrincipalAssignmentCheckNameRequest(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.PowerShell.cs similarity index 86% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.PowerShell.cs index 4d4c8ffca3a7..7bd18cc6c5bc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabasePrincipalAssignmentListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DatabasePrincipalAssignmentListResult(global::System.Collections.IDicti return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignmentTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignmentTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,34 +79,34 @@ internal DatabasePrincipalAssignmentListResult(global::System.Management.Automat return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignmentTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignmentTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabasePrincipalAssignmentListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabasePrincipalAssignmentListResult(content); } @@ -117,7 +117,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.TypeConverter.cs index d9fb790b75d7..a015f3d90cb6 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -103,14 +103,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.cs index 58c518acbc68..94819c7353c4 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto database principal assignments operation response. public partial class DatabasePrincipalAssignmentListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment[] _value; /// The list of Kusto database principal assignments. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DatabasePrincipalAssignmentListResult() @@ -31,8 +31,8 @@ public partial interface IDatabasePrincipalAssignmentListResult : ReadOnly = false, Description = @"The list of Kusto database principal assignments.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment[] Value { get; set; } } /// The list Kusto database principal assignments operation response. @@ -40,7 +40,7 @@ internal partial interface IDatabasePrincipalAssignmentListResultInternal { /// The list of Kusto database principal assignments. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.json.cs index 113c84d5c737..c7792177d7d1 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalAssignmentListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalAssignmentListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal DatabasePrincipalAssignmentListResult(Microsoft.Azure.PowerShell.Cmdlet { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignment.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignment.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabasePrincipalAssignmentListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.PowerShell.cs index a0fb4c621f31..3e7a618b5124 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabasePrincipalListRequest partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DatabasePrincipalListRequest(global::System.Collections.IDictionary con return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequestInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequestInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequestInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequestInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,32 +79,32 @@ internal DatabasePrincipalListRequest(global::System.Management.Automation.PSObj return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequestInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequestInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequestInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequestInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabasePrincipalListRequest(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabasePrincipalListRequest(content); } @@ -114,7 +114,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.TypeConverter.cs index 740d8df14dca..d875957cac74 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.cs index 54fab564ba33..22fe14fb9677 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto database principals operation request. public partial class DatabasePrincipalListRequest : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequestInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequestInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] _value; /// The list of Kusto database principals. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DatabasePrincipalListRequest() @@ -31,8 +31,8 @@ public partial interface IDatabasePrincipalListRequest : ReadOnly = false, Description = @"The list of Kusto database principals.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get; set; } } /// The list Kusto database principals operation request. @@ -40,7 +40,7 @@ internal partial interface IDatabasePrincipalListRequestInternal { /// The list of Kusto database principals. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.json.cs index 9feca4c78cc5..35a4641d5bc0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListRequest.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListRequest.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal DatabasePrincipalListRequest(Microsoft.Azure.PowerShell.Cmdlets.Kusto.R { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipal.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipal.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabasePrincipalListRequest(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.PowerShell.cs index 1920c42d12a5..fb8555be47ca 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabasePrincipalListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DatabasePrincipalListResult(global::System.Collections.IDictionary cont return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,32 +79,32 @@ internal DatabasePrincipalListResult(global::System.Management.Automation.PSObje return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabasePrincipalListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabasePrincipalListResult(content); } @@ -114,7 +114,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.TypeConverter.cs index 613c07c5611f..1df3a5f8dad0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.cs index 3da5fda46d42..a32803d15dd2 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto database principals operation response. public partial class DatabasePrincipalListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] _value; /// The list of Kusto database principals. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public DatabasePrincipalListResult() @@ -31,8 +31,8 @@ public partial interface IDatabasePrincipalListResult : ReadOnly = false, Description = @"The list of Kusto database principals.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get; set; } } /// The list Kusto database principals operation response. @@ -40,7 +40,7 @@ internal partial interface IDatabasePrincipalListResultInternal { /// The list of Kusto database principals. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.json.cs index 13490a4859f8..379b45fd7a7e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal DatabasePrincipalListResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Ru { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipal.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipal.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabasePrincipalListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.PowerShell.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.PowerShell.cs index b020e2116288..e9ec28e7215d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabasePrincipalProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,18 +61,18 @@ internal DatabasePrincipalProperties(global::System.Collections.IDictionary cont return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -85,38 +85,38 @@ internal DatabasePrincipalProperties(global::System.Management.Automation.PSObje return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalName = (string) content.GetValueForProperty("PrincipalName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType) content.GetValueForProperty("PrincipalType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).PrincipalType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.DatabasePrincipalRole.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantName = (string) content.GetValueForProperty("TenantName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal)this).TenantName, global::System.Convert.ToString); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabasePrincipalProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabasePrincipalProperties(content); } @@ -126,7 +126,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.TypeConverter.cs index 86ea42c67278..3f54ecf4c46c 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.cs index 365fe1632820..8135556be675 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.cs @@ -1,21 +1,21 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A class representing database principal property. public partial class DatabasePrincipalProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal { /// Internal Acessors for PrincipalName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal.PrincipalName { get => this._principalName; set { {_principalName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal.PrincipalName { get => this._principalName; set { {_principalName = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for TenantName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalPropertiesInternal.TenantName { get => this._tenantName; set { {_tenantName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalPropertiesInternal.TenantName { get => this._tenantName; set { {_tenantName = value;} } } /// Backing field for property. private string _principalId; diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.json.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.json.cs index 160bef3022cc..ddc44d632377 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabasePrincipalProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabasePrincipalProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -69,13 +69,13 @@ internal DatabasePrincipalProperties(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Ru } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabasePrincipalProperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.PowerShell.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.PowerShell.cs index 89869dc69f0c..be4d5cabc4c0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,7 +48,7 @@ public partial class DatabaseStatistics partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -61,12 +61,12 @@ internal DatabaseStatistics(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)this).Size = (float?) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)this).Size, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)this).Size = (float?) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)this).Size, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -79,32 +79,32 @@ internal DatabaseStatistics(global::System.Management.Automation.PSObject conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)this).Size = (float?) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)this).Size, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)this).Size = (float?) content.GetValueForProperty("Size",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)this).Size, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DatabaseStatistics(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DatabaseStatistics(content); } @@ -114,7 +114,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatab /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.TypeConverter.cs index 1b52bb4a1f4b..5933dcdf5266 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.cs index 2e9e104e9a32..366d01c03e18 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A class that contains database statistics information. public partial class DatabaseStatistics : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.json.cs b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.json.cs index be311d702d77..4627991cca88 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DatabaseStatistics.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DatabaseStatistics.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -63,13 +63,13 @@ internal DatabaseStatistics(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Jso } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DatabaseStatistics(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.PowerShell.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.PowerShell.cs index e905b3a024a0..e3513db0605a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -47,33 +47,33 @@ public partial class DiagnoseVirtualNetworkResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new DiagnoseVirtualNetworkResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new DiagnoseVirtualNetworkResult(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -86,12 +86,12 @@ internal DiagnoseVirtualNetworkResult(global::System.Collections.IDictionary con return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResultInternal)this).Finding = (string[]) content.GetValueForProperty("Finding",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResultInternal)this).Finding, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResultInternal)this).Finding = (string[]) content.GetValueForProperty("Finding",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResultInternal)this).Finding, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -104,7 +104,7 @@ internal DiagnoseVirtualNetworkResult(global::System.Management.Automation.PSObj return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResultInternal)this).Finding = (string[]) content.GetValueForProperty("Finding",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResultInternal)this).Finding, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResultInternal)this).Finding = (string[]) content.GetValueForProperty("Finding",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResultInternal)this).Finding, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializePSObject(content); } @@ -113,7 +113,7 @@ internal DiagnoseVirtualNetworkResult(global::System.Management.Automation.PSObj /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.TypeConverter.cs index 01a1e7d5ac7a..749c379d4ed6 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.cs b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.cs rename to src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.cs index 7df8b58c8189..cc7d515eedf6 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.cs @@ -1,10 +1,10 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; public partial class DiagnoseVirtualNetworkResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResultInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.json.cs index 0b3c90cac64c..fa6ade963947 100644 --- a/src/Kusto/generated/api/Models/Api20200215/DiagnoseVirtualNetworkResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/DiagnoseVirtualNetworkResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -62,13 +62,13 @@ internal DiagnoseVirtualNetworkResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.R } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDiagnoseVirtualNetworkResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDiagnoseVirtualNetworkResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new DiagnoseVirtualNetworkResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.PowerShell.cs similarity index 69% rename from src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.PowerShell.cs index 717921a9d9a9..2bcc97e5ba3e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,35 +48,35 @@ public partial class EventGridConnectionProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new EventGridConnectionProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new EventGridConnectionProperties(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -89,17 +89,19 @@ internal EventGridConnectionProperties(global::System.Collections.IDictionary co return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).BlobStorageEventType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType?) content.GetValueForProperty("BlobStorageEventType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).BlobStorageEventType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).IgnoreFirstRecord = (bool?) content.GetValueForProperty("IgnoreFirstRecord",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).IgnoreFirstRecord, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -112,12 +114,14 @@ internal EventGridConnectionProperties(global::System.Management.Automation.PSOb return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).BlobStorageEventType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType?) content.GetValueForProperty("BlobStorageEventType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).BlobStorageEventType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).IgnoreFirstRecord = (bool?) content.GetValueForProperty("IgnoreFirstRecord",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).IgnoreFirstRecord, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).StorageAccountResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); AfterDeserializePSObject(content); } @@ -126,7 +130,7 @@ internal EventGridConnectionProperties(global::System.Management.Automation.PSOb /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.TypeConverter.cs index 5cd2d6de3b84..145eed0e90cf 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.cs similarity index 72% rename from src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.cs index 26a1ca5f6ecd..ed76b563d289 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.cs @@ -1,13 +1,20 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing the Kusto event grid connection properties. public partial class EventGridConnectionProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal { + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType? _blobStorageEventType; + + /// The name of blob storage event type to process. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType? BlobStorageEventType { get => this._blobStorageEventType; set => this._blobStorageEventType = value; } + /// Backing field for property. private string _consumerGroup; @@ -16,13 +23,13 @@ public partial class EventGridConnectionProperties : public string ConsumerGroup { get => this._consumerGroup; set => this._consumerGroup = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat _dataFormat; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat? _dataFormat; /// /// The data format of the message. Optionally the data format can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat DataFormat { get => this._dataFormat; set => this._dataFormat = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat? DataFormat { get => this._dataFormat; set => this._dataFormat = value; } /// Backing field for property. private string _eventHubResourceId; @@ -31,6 +38,15 @@ public partial class EventGridConnectionProperties : [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] public string EventHubResourceId { get => this._eventHubResourceId; set => this._eventHubResourceId = value; } + /// Backing field for property. + private bool? _ignoreFirstRecord; + + /// + /// A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file + /// + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] + public bool? IgnoreFirstRecord { get => this._ignoreFirstRecord; set => this._ignoreFirstRecord = value; } + /// Backing field for property. private string _mappingRuleName; @@ -66,6 +82,14 @@ public EventGridConnectionProperties() public partial interface IEventGridConnectionProperties : Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IJsonSerializable { + /// The name of blob storage event type to process. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of blob storage event type to process.", + SerializedName = @"blobStorageEventType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType? BlobStorageEventType { get; set; } /// The event hub consumer group. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = true, @@ -78,12 +102,12 @@ public partial interface IEventGridConnectionProperties : /// The data format of the message. Optionally the data format can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( - Required = true, + Required = false, ReadOnly = false, Description = @"The data format of the message. Optionally the data format can be added to each message.", SerializedName = @"dataFormat", PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat DataFormat { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat? DataFormat { get; set; } /// The resource ID where the event grid is configured to send events. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = true, @@ -93,6 +117,16 @@ public partial interface IEventGridConnectionProperties : PossibleTypes = new [] { typeof(string) })] string EventHubResourceId { get; set; } /// + /// A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file + /// + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file", + SerializedName = @"ignoreFirstRecord", + PossibleTypes = new [] { typeof(bool) })] + bool? IgnoreFirstRecord { get; set; } + /// /// The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( @@ -114,7 +148,7 @@ public partial interface IEventGridConnectionProperties : /// The table where the data should be ingested. Optionally the table information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( - Required = true, + Required = false, ReadOnly = false, Description = @"The table where the data should be ingested. Optionally the table information can be added to each message.", SerializedName = @"tableName", @@ -126,15 +160,21 @@ public partial interface IEventGridConnectionProperties : internal partial interface IEventGridConnectionPropertiesInternal { + /// The name of blob storage event type to process. + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType? BlobStorageEventType { get; set; } /// The event hub consumer group. string ConsumerGroup { get; set; } /// /// The data format of the message. Optionally the data format can be added to each message. /// - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat DataFormat { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat? DataFormat { get; set; } /// The resource ID where the event grid is configured to send events. string EventHubResourceId { get; set; } /// + /// A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file + /// + bool? IgnoreFirstRecord { get; set; } + /// /// The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. /// string MappingRuleName { get; set; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.json.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.json.cs index 107f229f4b4b..b744c20449d0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridConnectionProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridConnectionProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,9 +58,11 @@ internal EventGridConnectionProperties(Microsoft.Azure.PowerShell.Cmdlets.Kusto. { return; } + {_blobStorageEventType = If( json?.PropertyT("blobStorageEventType"), out var __jsonBlobStorageEventType) ? (string)__jsonBlobStorageEventType : (string)BlobStorageEventType;} {_consumerGroup = If( json?.PropertyT("consumerGroup"), out var __jsonConsumerGroup) ? (string)__jsonConsumerGroup : (string)ConsumerGroup;} {_dataFormat = If( json?.PropertyT("dataFormat"), out var __jsonDataFormat) ? (string)__jsonDataFormat : (string)DataFormat;} {_eventHubResourceId = If( json?.PropertyT("eventHubResourceId"), out var __jsonEventHubResourceId) ? (string)__jsonEventHubResourceId : (string)EventHubResourceId;} + {_ignoreFirstRecord = If( json?.PropertyT("ignoreFirstRecord"), out var __jsonIgnoreFirstRecord) ? (bool?)__jsonIgnoreFirstRecord : IgnoreFirstRecord;} {_mappingRuleName = If( json?.PropertyT("mappingRuleName"), out var __jsonMappingRuleName) ? (string)__jsonMappingRuleName : (string)MappingRuleName;} {_storageAccountResourceId = If( json?.PropertyT("storageAccountResourceId"), out var __jsonStorageAccountResourceId) ? (string)__jsonStorageAccountResourceId : (string)StorageAccountResourceId;} {_tableName = If( json?.PropertyT("tableName"), out var __jsonTableName) ? (string)__jsonTableName : (string)TableName;} @@ -68,13 +70,13 @@ internal EventGridConnectionProperties(Microsoft.Azure.PowerShell.Cmdlets.Kusto. } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new EventGridConnectionProperties(json) : null; } @@ -98,9 +100,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode ToJson(Mic { return container; } + AddIf( null != (((object)this._blobStorageEventType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._blobStorageEventType.ToString()) : null, "blobStorageEventType" ,container.Add ); AddIf( null != (((object)this._consumerGroup)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._consumerGroup.ToString()) : null, "consumerGroup" ,container.Add ); AddIf( null != (((object)this._dataFormat)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._dataFormat.ToString()) : null, "dataFormat" ,container.Add ); AddIf( null != (((object)this._eventHubResourceId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._eventHubResourceId.ToString()) : null, "eventHubResourceId" ,container.Add ); + AddIf( null != this._ignoreFirstRecord ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonBoolean((bool)this._ignoreFirstRecord) : null, "ignoreFirstRecord" ,container.Add ); AddIf( null != (((object)this._mappingRuleName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._mappingRuleName.ToString()) : null, "mappingRuleName" ,container.Add ); AddIf( null != (((object)this._storageAccountResourceId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._storageAccountResourceId.ToString()) : null, "storageAccountResourceId" ,container.Add ); AddIf( null != (((object)this._tableName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._tableName.ToString()) : null, "tableName" ,container.Add ); diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.PowerShell.cs similarity index 69% rename from src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.PowerShell.cs index 15e616e6b1ee..783b4302f67b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,33 +48,33 @@ public partial class EventGridDataConnection partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new EventGridDataConnection(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new EventGridDataConnection(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -87,23 +87,25 @@ internal EventGridDataConnection(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridConnectionPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).StorageAccountResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).BlobStorageEventType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType?) content.GetValueForProperty("BlobStorageEventType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).BlobStorageEventType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).IgnoreFirstRecord = (bool?) content.GetValueForProperty("IgnoreFirstRecord",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).IgnoreFirstRecord, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).StorageAccountResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).TableName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -116,18 +118,20 @@ internal EventGridDataConnection(global::System.Management.Automation.PSObject c return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridConnectionPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).StorageAccountResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).BlobStorageEventType = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType?) content.GetValueForProperty("BlobStorageEventType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).BlobStorageEventType, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).IgnoreFirstRecord = (bool?) content.GetValueForProperty("IgnoreFirstRecord",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).IgnoreFirstRecord, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).StorageAccountResourceId = (string) content.GetValueForProperty("StorageAccountResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).StorageAccountResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal)this).TableName, global::System.Convert.ToString); AfterDeserializePSObject(content); } @@ -136,7 +140,7 @@ internal EventGridDataConnection(global::System.Management.Automation.PSObject c /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.TypeConverter.cs index 904e10dfff1c..81f6e8757c1c 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.cs similarity index 72% rename from src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.cs index 884810520a22..0ee272a8bffc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.cs @@ -1,32 +1,36 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing an Event Grid data connection. public partial class EventGridDataConnection : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(); + + /// The name of blob storage event type to process. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType? BlobStorageEventType { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).BlobStorageEventType; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).BlobStorageEventType = value; } /// The event hub consumer group. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string ConsumerGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).ConsumerGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).ConsumerGroup = value; } + public string ConsumerGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).ConsumerGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).ConsumerGroup = value; } /// /// The data format of the message. Optionally the data format can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat DataFormat { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).DataFormat; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).DataFormat = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat? DataFormat { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).DataFormat; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).DataFormat = value; } /// The resource ID where the event grid is configured to send events. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string EventHubResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).EventHubResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).EventHubResourceId = value; } + public string EventHubResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).EventHubResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).EventHubResourceId = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -34,19 +38,25 @@ public partial class EventGridDataConnection : [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Id; } + /// + /// A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file + /// + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] + public bool? IgnoreFirstRecord { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).IgnoreFirstRecord; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).IgnoreFirstRecord = value; } + /// Kind of the endpoint for the data connection [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Kind = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Kind = value; } /// Resource location. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Location = value; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Location = value; } /// /// The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string MappingRuleName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).MappingRuleName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).MappingRuleName = value; } + public string MappingRuleName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).MappingRuleName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).MappingRuleName = value; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Id = value; } @@ -58,28 +68,28 @@ public partial class EventGridDataConnection : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Type = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridConnectionProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridConnectionProperties()); set { {_property = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties _property; /// The properties of the Event Grid data connection. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridConnectionProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridConnectionProperties()); set => this._property = value; } /// The resource ID of the storage account where the data resides. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string StorageAccountResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).StorageAccountResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).StorageAccountResourceId = value; } + public string StorageAccountResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).StorageAccountResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).StorageAccountResourceId = value; } /// /// The table where the data should be ingested. Optionally the table information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string TableName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).TableName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionPropertiesInternal)Property).TableName = value; } + public string TableName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).TableName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionPropertiesInternal)Property).TableName = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -108,8 +118,16 @@ public EventGridDataConnection() /// Class representing an Event Grid data connection. public partial interface IEventGridDataConnection : Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection { + /// The name of blob storage event type to process. + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of blob storage event type to process.", + SerializedName = @"blobStorageEventType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType? BlobStorageEventType { get; set; } /// The event hub consumer group. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = true, @@ -122,12 +140,12 @@ public partial interface IEventGridDataConnection : /// The data format of the message. Optionally the data format can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( - Required = true, + Required = false, ReadOnly = false, Description = @"The data format of the message. Optionally the data format can be added to each message.", SerializedName = @"dataFormat", PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat DataFormat { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat? DataFormat { get; set; } /// The resource ID where the event grid is configured to send events. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = true, @@ -137,6 +155,16 @@ public partial interface IEventGridDataConnection : PossibleTypes = new [] { typeof(string) })] string EventHubResourceId { get; set; } /// + /// A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file + /// + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file", + SerializedName = @"ignoreFirstRecord", + PossibleTypes = new [] { typeof(bool) })] + bool? IgnoreFirstRecord { get; set; } + /// /// The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( @@ -158,7 +186,7 @@ public partial interface IEventGridDataConnection : /// The table where the data should be ingested. Optionally the table information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( - Required = true, + Required = false, ReadOnly = false, Description = @"The table where the data should be ingested. Optionally the table information can be added to each message.", SerializedName = @"tableName", @@ -168,22 +196,28 @@ public partial interface IEventGridDataConnection : } /// Class representing an Event Grid data connection. internal partial interface IEventGridDataConnectionInternal : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal { + /// The name of blob storage event type to process. + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType? BlobStorageEventType { get; set; } /// The event hub consumer group. string ConsumerGroup { get; set; } /// /// The data format of the message. Optionally the data format can be added to each message. /// - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat DataFormat { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat? DataFormat { get; set; } /// The resource ID where the event grid is configured to send events. string EventHubResourceId { get; set; } /// + /// A Boolean value that, if set to true, indicates that ingestion should ignore the first record of every file + /// + bool? IgnoreFirstRecord { get; set; } + /// /// The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. /// string MappingRuleName { get; set; } /// The properties of the Event Grid data connection. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridConnectionProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridConnectionProperties Property { get; set; } /// The resource ID of the storage account where the data resides. string StorageAccountResourceId { get; set; } /// diff --git a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.json.cs b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.json.cs rename to src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.json.cs index 94a686823b59..e0284cf23c05 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventGridDataConnection.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventGridDataConnection.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,19 +58,19 @@ internal EventGridDataConnection(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtim { return; } - __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridConnectionProperties.FromJson(__jsonProperties) : Property;} + __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridConnectionProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventGridDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventGridDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new EventGridDataConnection(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.PowerShell.cs similarity index 80% rename from src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.PowerShell.cs index 88f6ef4aae49..f94a50409498 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,33 +48,33 @@ public partial class EventHubConnectionProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new EventHubConnectionProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new EventHubConnectionProperties(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -87,18 +87,18 @@ internal EventHubConnectionProperties(global::System.Collections.IDictionary con return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -111,13 +111,13 @@ internal EventHubConnectionProperties(global::System.Management.Automation.PSObj return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); AfterDeserializePSObject(content); } @@ -126,7 +126,7 @@ internal EventHubConnectionProperties(global::System.Management.Automation.PSObj /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.TypeConverter.cs index e877787aae79..13f62a945f18 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.cs similarity index 99% rename from src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.cs index ca45094ca6c5..109ca3579036 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing the Kusto event hub connection properties. public partial class EventHubConnectionProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.json.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.json.cs index 5255cb4a3d09..87b598c457a3 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubConnectionProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubConnectionProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -69,13 +69,13 @@ internal EventHubConnectionProperties(Microsoft.Azure.PowerShell.Cmdlets.Kusto.R } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new EventHubConnectionProperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.PowerShell.cs similarity index 79% rename from src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.PowerShell.cs index d56513dc8a6b..d374da267690 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,33 +48,33 @@ public partial class EventHubDataConnection partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new EventHubDataConnection(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new EventHubDataConnection(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -87,24 +87,24 @@ internal EventHubDataConnection(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubConnectionPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -117,19 +117,19 @@ internal EventHubDataConnection(global::System.Management.Automation.PSObject co return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubConnectionPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Compression = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression?) content.GetValueForProperty("Compression",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).Compression, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventHubResourceId = (string) content.GetValueForProperty("EventHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); AfterDeserializePSObject(content); } @@ -138,7 +138,7 @@ internal EventHubDataConnection(global::System.Management.Automation.PSObject co /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.TypeConverter.cs index 95490a8ee5c6..23f2dade5433 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.cs index e9e4e405df31..0eec24979658 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.cs @@ -1,40 +1,40 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing an event hub data connection. public partial class EventHubDataConnection : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(); /// The event hub messages compression type [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression? Compression { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).Compression; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).Compression = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression? Compression { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).Compression; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).Compression = value; } /// The event hub consumer group. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string ConsumerGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).ConsumerGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).ConsumerGroup = value; } + public string ConsumerGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).ConsumerGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).ConsumerGroup = value; } /// /// The data format of the message. Optionally the data format can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat? DataFormat { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).DataFormat; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).DataFormat = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat? DataFormat { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).DataFormat; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).DataFormat = value; } /// The resource ID of the event hub to be used to create a data connection. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string EventHubResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).EventHubResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).EventHubResourceId = value; } + public string EventHubResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).EventHubResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).EventHubResourceId = value; } /// System properties of the event hub [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string[] EventSystemProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).EventSystemProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).EventSystemProperty = value; } + public string[] EventSystemProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).EventSystemProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).EventSystemProperty = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -44,17 +44,17 @@ public partial class EventHubDataConnection : /// Kind of the endpoint for the data connection [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Kind = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Kind = value; } /// Resource location. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Location = value; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Location = value; } /// /// The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string MappingRuleName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).MappingRuleName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).MappingRuleName = value; } + public string MappingRuleName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).MappingRuleName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).MappingRuleName = value; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Id = value; } @@ -66,24 +66,24 @@ public partial class EventHubDataConnection : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Type = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubConnectionProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubConnectionProperties()); set { {_property = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties _property; /// The Event Hub data connection properties to validate. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubConnectionProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubConnectionProperties()); set => this._property = value; } /// /// The table where the data should be ingested. Optionally the table information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string TableName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).TableName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionPropertiesInternal)Property).TableName = value; } + public string TableName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).TableName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionPropertiesInternal)Property).TableName = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -112,7 +112,7 @@ public EventHubDataConnection() /// Class representing an event hub data connection. public partial interface IEventHubDataConnection : Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection { /// The event hub messages compression type [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( @@ -180,7 +180,7 @@ public partial interface IEventHubDataConnection : } /// Class representing an event hub data connection. internal partial interface IEventHubDataConnectionInternal : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal { /// The event hub messages compression type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Compression? Compression { get; set; } @@ -199,7 +199,7 @@ internal partial interface IEventHubDataConnectionInternal : /// string MappingRuleName { get; set; } /// The Event Hub data connection properties to validate. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubConnectionProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubConnectionProperties Property { get; set; } /// /// The table where the data should be ingested. Optionally the table information can be added to each message. /// diff --git a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.json.cs b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.json.cs rename to src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.json.cs index d5ac84aeedde..6142f2307d68 100644 --- a/src/Kusto/generated/api/Models/Api20200215/EventHubDataConnection.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/EventHubDataConnection.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,19 +58,19 @@ internal EventHubDataConnection(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime { return; } - __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubConnectionProperties.FromJson(__jsonProperties) : Property;} + __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubConnectionProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IEventHubDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IEventHubDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new EventHubDataConnection(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.PowerShell.cs index 338544d859f5..eced7e0f413a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,33 +48,33 @@ public partial class FollowerDatabaseDefinition partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new FollowerDatabaseDefinition(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new FollowerDatabaseDefinition(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -87,14 +87,14 @@ internal FollowerDatabaseDefinition(global::System.Collections.IDictionary conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).DatabaseName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -107,9 +107,9 @@ internal FollowerDatabaseDefinition(global::System.Management.Automation.PSObjec return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal)this).DatabaseName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId = (string) content.GetValueForProperty("ClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).ClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).DatabaseName = (string) content.GetValueForProperty("DatabaseName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal)this).DatabaseName, global::System.Convert.ToString); AfterDeserializePSObject(content); } @@ -118,7 +118,7 @@ internal FollowerDatabaseDefinition(global::System.Management.Automation.PSObjec /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.TypeConverter.cs index 6e5d18137a39..3811aa055e42 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.cs index f45df473f3f2..372fe9cd3276 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A class representing follower database request. public partial class FollowerDatabaseDefinition : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal { /// Backing field for property. @@ -32,7 +32,7 @@ public partial class FollowerDatabaseDefinition : public string DatabaseName { get => this._databaseName; } /// Internal Acessors for DatabaseName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinitionInternal.DatabaseName { get => this._databaseName; set { {_databaseName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinitionInternal.DatabaseName { get => this._databaseName; set { {_databaseName = value;} } } /// Creates an new instance. public FollowerDatabaseDefinition() diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.json.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.json.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.json.cs index d1a313e14b62..985553378f05 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseDefinition.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseDefinition.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -65,13 +65,13 @@ internal FollowerDatabaseDefinition(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Run } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new FollowerDatabaseDefinition(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.PowerShell.cs index 0864b20fcf0e..10c9a073769e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,33 +48,33 @@ public partial class FollowerDatabaseListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new FollowerDatabaseListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new FollowerDatabaseListResult(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -87,12 +87,12 @@ internal FollowerDatabaseListResult(global::System.Collections.IDictionary conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseDefinitionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseDefinitionTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -105,7 +105,7 @@ internal FollowerDatabaseListResult(global::System.Management.Automation.PSObjec return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseDefinitionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseDefinitionTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } @@ -114,7 +114,7 @@ internal FollowerDatabaseListResult(global::System.Management.Automation.PSObjec /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.TypeConverter.cs index 4578db60219d..d96e7486682d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.cs index 97f1e59d1515..3dfb16025e94 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list Kusto database principals operation response. public partial class FollowerDatabaseListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition[] _value; /// The list of follower database result. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public FollowerDatabaseListResult() @@ -31,8 +31,8 @@ public partial interface IFollowerDatabaseListResult : ReadOnly = false, Description = @"The list of follower database result.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition[] Value { get; set; } } /// The list Kusto database principals operation response. @@ -40,7 +40,7 @@ internal partial interface IFollowerDatabaseListResultInternal { /// The list of follower database result. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.json.cs index 0b80f298db79..bd3a46ff1fb0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/FollowerDatabaseListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/FollowerDatabaseListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -58,18 +58,18 @@ internal FollowerDatabaseListResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Run { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseDefinition.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseDefinition.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new FollowerDatabaseListResult(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/Identity.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/Identity.PowerShell.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/Identity.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/Identity.PowerShell.cs index 14dce832c5be..f9ac2b506944 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Identity.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Identity.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class Identity partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Identity(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Identity(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdent /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,15 +94,15 @@ internal Identity(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -115,10 +115,10 @@ internal Identity(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).TenantId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/Identity.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/Identity.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/Identity.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/Identity.TypeConverter.cs index 7a8239567010..c47755db195e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Identity.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Identity.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/Identity.cs b/src/Kusto/generated/api/Models/Api20200614/Identity.cs similarity index 91% rename from src/Kusto/generated/api/Models/Api20200215/Identity.cs rename to src/Kusto/generated/api/Models/Api20200614/Identity.cs index df1eb33a137c..91a84ce894c8 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Identity.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Identity.cs @@ -1,18 +1,18 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Identity for the resource. public partial class Identity : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal { /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } /// Internal Acessors for TenantId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityInternal.TenantId { get => this._tenantId; set { {_tenantId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityInternal.TenantId { get => this._tenantId; set { {_tenantId = value;} } } /// Backing field for property. private string _principalId; @@ -36,14 +36,14 @@ public partial class Identity : public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IdentityType Type { get => this._type; set => this._type = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities _userAssignedIdentity; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities _userAssignedIdentity; /// /// The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities UserAssignedIdentity { get => (this._userAssignedIdentity = this._userAssignedIdentity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentities()); set => this._userAssignedIdentity = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities UserAssignedIdentity { get => (this._userAssignedIdentity = this._userAssignedIdentity ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentities()); set => this._userAssignedIdentity = value; } /// Creates an new instance. public Identity() @@ -88,8 +88,8 @@ public partial interface IIdentity : ReadOnly = false, Description = @"The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } } /// Identity for the resource. @@ -106,7 +106,7 @@ internal partial interface IIdentityInternal /// The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. /// - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/Identity.json.cs b/src/Kusto/generated/api/Models/Api20200614/Identity.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/Identity.json.cs rename to src/Kusto/generated/api/Models/Api20200614/Identity.json.cs index 6ae1744720a8..b3fbc847ba09 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Identity.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Identity.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class Identity partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new Identity(json) : null; } @@ -73,7 +73,7 @@ internal Identity(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObje {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} {_principalId = If( json?.PropertyT("principalId"), out var __jsonPrincipalId) ? (string)__jsonPrincipalId : (string)PrincipalId;} {_tenantId = If( json?.PropertyT("tenantId"), out var __jsonTenantId) ? (string)__jsonTenantId : (string)TenantId;} - {_userAssignedIdentity = If( json?.PropertyT("userAssignedIdentities"), out var __jsonUserAssignedIdentities) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentities.FromJson(__jsonUserAssignedIdentities) : UserAssignedIdentity;} + {_userAssignedIdentity = If( json?.PropertyT("userAssignedIdentities"), out var __jsonUserAssignedIdentities) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentities.FromJson(__jsonUserAssignedIdentities) : UserAssignedIdentity;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.PowerShell.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.PowerShell.cs index cef2e802035e..c60889b1f0a9 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -51,29 +51,29 @@ public partial class IdentityUserAssignedIdentities partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new IdentityUserAssignedIdentities(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new IdentityUserAssignedIdentities(content); } @@ -83,10 +83,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdent /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -105,7 +105,7 @@ internal IdentityUserAssignedIdentities(global::System.Collections.IDictionary c } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.TypeConverter.cs index 3a41d28ba0ed..6d97dff78a0d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.cs b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.cs rename to src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.cs index 27084b554673..03f07259a979 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -7,8 +7,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. /// public partial class IdentityUserAssignedIdentities : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentitiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentitiesInternal { /// Creates an new instance. @@ -21,7 +21,7 @@ public IdentityUserAssignedIdentities() /// resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. public partial interface IIdentityUserAssignedIdentities : Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray { } diff --git a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.dictionary.cs b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.dictionary.cs similarity index 82% rename from src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.dictionary.cs rename to src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.dictionary.cs index b6b79c2fbedb..3ed707192170 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.dictionary.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.dictionary.cs @@ -1,25 +1,25 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; public partial class IdentityUserAssignedIdentities : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray { - protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); - global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } - int Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + int Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } - global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } - global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } /// /// - public void Add(global::System.String key, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties value) => __additionalProperties.Add( key, value); + public void Add(global::System.String key, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties value) => __additionalProperties.Add( key, value); public void Clear() => __additionalProperties.Clear(); @@ -35,7 +35,7 @@ public void CopyFrom(global::System.Collections.IDictionary source) { if ((null != property.Key && null != property.Value)) { - this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); } } } @@ -50,7 +50,7 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) { if ((null != property.Key && null != property.Value)) { - this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); } } } @@ -61,10 +61,10 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// /// - public bool TryGetValue(global::System.String key, out Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties value) => __additionalProperties.TryGetValue( key, out value); + public bool TryGetValue(global::System.String key, out Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IComponentsSgqdofSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties value) => __additionalProperties.TryGetValue( key, out value); /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IdentityUserAssignedIdentities source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IdentityUserAssignedIdentities source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.json.cs b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.json.cs rename to src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.json.cs index 82561732ffde..eec2bf297e3c 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IdentityUserAssignedIdentities.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IdentityUserAssignedIdentities.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -50,13 +50,13 @@ public partial class IdentityUserAssignedIdentities partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new IdentityUserAssignedIdentities(json) : null; } @@ -74,7 +74,7 @@ internal IdentityUserAssignedIdentities(Microsoft.Azure.PowerShell.Cmdlets.Kusto { return; } - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); AfterFromJson(json); } @@ -97,7 +97,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode ToJson(Mic { return container; } - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray)this).AdditionalProperties, container); + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IAssociativeArray)this).AdditionalProperties, container); AfterToJson(ref container); return container; } diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.PowerShell.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.PowerShell.cs index 4354c1b4a3b3..2e68e85b9d4a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class IotHubConnectionProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new IotHubConnectionProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new IotHubConnectionProperties(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHu /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,18 +94,18 @@ internal IotHubConnectionProperties(global::System.Collections.IDictionary conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).IotHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).IotHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -118,13 +118,13 @@ internal IotHubConnectionProperties(global::System.Management.Automation.PSObjec return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).IotHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).IotHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)this).TableName, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.TypeConverter.cs index 67f7ea3abea4..fa8b653d486f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.cs similarity index 99% rename from src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.cs index 10d6e0478765..050e56dcae38 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing the Kusto Iot hub connection properties. public partial class IotHubConnectionProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.json.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.json.cs index 5a3dee58f16d..d4231911b381 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubConnectionProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubConnectionProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class IotHubConnectionProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new IotHubConnectionProperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.PowerShell.cs similarity index 78% rename from src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.PowerShell.cs index b9eaf86e24e6..9ce7cdeb64c6 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class IotHubDataConnection partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new IotHubDataConnection(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new IotHubDataConnection(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHu /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,24 +94,24 @@ internal IotHubDataConnection(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubConnectionPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).IotHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).IotHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -124,19 +124,19 @@ internal IotHubDataConnection(global::System.Management.Automation.PSObject cont return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubConnectionPropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).IotHubResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).ConsumerGroup = (string) content.GetValueForProperty("ConsumerGroup",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).ConsumerGroup, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).DataFormat = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat?) content.GetValueForProperty("DataFormat",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).DataFormat, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).EventSystemProperty = (string[]) content.GetValueForProperty("EventSystemProperty",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).EventSystemProperty, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).IotHubResourceId = (string) content.GetValueForProperty("IotHubResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).IotHubResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).MappingRuleName = (string) content.GetValueForProperty("MappingRuleName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).MappingRuleName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).SharedAccessPolicyName = (string) content.GetValueForProperty("SharedAccessPolicyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).SharedAccessPolicyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).TableName = (string) content.GetValueForProperty("TableName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal)this).TableName, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.TypeConverter.cs index e13c6f215529..50c6d386a721 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.cs index eaa351a74fb0..5ac6ae315e51 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.cs @@ -1,32 +1,32 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing an iot hub data connection. public partial class IotHubDataConnection : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(); /// The iot hub consumer group. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string ConsumerGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).ConsumerGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).ConsumerGroup = value; } + public string ConsumerGroup { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).ConsumerGroup; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).ConsumerGroup = value; } /// /// The data format of the message. Optionally the data format can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat? DataFormat { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).DataFormat; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).DataFormat = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat? DataFormat { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).DataFormat; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).DataFormat = value; } /// System properties of the iot hub [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string[] EventSystemProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).EventSystemProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).EventSystemProperty = value; } + public string[] EventSystemProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).EventSystemProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).EventSystemProperty = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -36,21 +36,21 @@ public partial class IotHubDataConnection : /// The resource ID of the Iot hub to be used to create a data connection. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string IotHubResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).IotHubResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).IotHubResourceId = value; } + public string IotHubResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).IotHubResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).IotHubResourceId = value; } /// Kind of the endpoint for the data connection [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Kind = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Kind = value; } /// Resource location. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal)__dataConnection).Location = value; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal)__dataConnection).Location = value; } /// /// The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string MappingRuleName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).MappingRuleName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).MappingRuleName = value; } + public string MappingRuleName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).MappingRuleName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).MappingRuleName = value; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Id = value; } @@ -62,28 +62,28 @@ public partial class IotHubDataConnection : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Type = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubConnectionProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubConnectionProperties()); set { {_property = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__dataConnection).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties _property; /// The Iot Hub data connection properties. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubConnectionProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubConnectionProperties()); set => this._property = value; } /// The name of the share access policy [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string SharedAccessPolicyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).SharedAccessPolicyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).SharedAccessPolicyName = value; } + public string SharedAccessPolicyName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).SharedAccessPolicyName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).SharedAccessPolicyName = value; } /// /// The table where the data should be ingested. Optionally the table information can be added to each message. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string TableName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).TableName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionPropertiesInternal)Property).TableName = value; } + public string TableName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).TableName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionPropertiesInternal)Property).TableName = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -112,7 +112,7 @@ public IotHubDataConnection() /// Class representing an iot hub data connection. public partial interface IIotHubDataConnection : Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection { /// The iot hub consumer group. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( @@ -180,7 +180,7 @@ public partial interface IIotHubDataConnection : } /// Class representing an iot hub data connection. internal partial interface IIotHubDataConnectionInternal : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionInternal { /// The iot hub consumer group. string ConsumerGroup { get; set; } @@ -197,7 +197,7 @@ internal partial interface IIotHubDataConnectionInternal : /// string MappingRuleName { get; set; } /// The Iot Hub data connection properties. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubConnectionProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubConnectionProperties Property { get; set; } /// The name of the share access policy string SharedAccessPolicyName { get; set; } /// diff --git a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.json.cs b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.json.cs rename to src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.json.cs index f46c6b6010a5..ca88c670c201 100644 --- a/src/Kusto/generated/api/Models/Api20200215/IotHubDataConnection.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/IotHubDataConnection.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class IotHubDataConnection partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIotHubDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIotHubDataConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new IotHubDataConnection(json) : null; } @@ -70,8 +70,8 @@ internal IotHubDataConnection(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.J { return; } - __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubConnectionProperties.FromJson(__jsonProperties) : Property;} + __dataConnection = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubConnectionProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.PowerShell.cs index f4a8aeb7dc92..d9eb8bba3b2c 100644 --- a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class KeyVaultProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new KeyVaultProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new KeyVaultProperties(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVa /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,14 +94,14 @@ internal KeyVaultProperties(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -114,9 +114,9 @@ internal KeyVaultProperties(global::System.Management.Automation.PSObject conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.TypeConverter.cs index 60d54298007c..6c0370ed5dd9 100644 --- a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.cs b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.cs index fbd6c02550cd..a16c1478e090 100644 --- a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Properties of the key vault. public partial class KeyVaultProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultPropertiesInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.json.cs index 5a97cf87fec2..bcd4897bfa2a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/KeyVaultProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/KeyVaultProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class KeyVaultProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IKeyVaultProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IKeyVaultProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new KeyVaultProperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.PowerShell.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtension.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtension.PowerShell.cs index 2edbbbcf2f09..694ecb9a2267 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class LanguageExtension partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new LanguageExtension(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new LanguageExtension(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILangu /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,12 +94,12 @@ internal LanguageExtension(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName?) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName?) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName.CreateFrom); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -112,7 +112,7 @@ internal LanguageExtension(global::System.Management.Automation.PSObject content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName?) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName?) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.LanguageExtensionName.CreateFrom); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtension.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtension.TypeConverter.cs index 775db2fbac98..477d5429f309 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtension.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtension.cs index 4e8ca12217de..54549d52f42f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The language extension object. public partial class LanguageExtension : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.json.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtension.json.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtension.json.cs index af9235bb8a22..89af5a513609 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtension.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtension.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class LanguageExtension partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new LanguageExtension(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.PowerShell.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.PowerShell.cs index e932cfa4eec1..7257d0eae2d3 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class LanguageExtensionsList partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new LanguageExtensionsList(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new LanguageExtensionsList(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILangu /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,12 +94,12 @@ internal LanguageExtensionsList(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -112,7 +112,7 @@ internal LanguageExtensionsList(global::System.Management.Automation.PSObject co return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.TypeConverter.cs index e4b63b848f4d..2aad5a95d69a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.cs index 2bf9978b6078..7e2702c6729f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list of language extension objects. public partial class LanguageExtensionsList : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsListInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsListInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] _value; /// The list of language extensions. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public LanguageExtensionsList() @@ -31,8 +31,8 @@ public partial interface ILanguageExtensionsList : ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Value { get; set; } } /// The list of language extension objects. @@ -40,7 +40,7 @@ internal partial interface ILanguageExtensionsListInternal { /// The list of language extensions. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.json.cs b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.json.cs similarity index 93% rename from src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.json.cs rename to src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.json.cs index 933c11283859..30f419f73336 100644 --- a/src/Kusto/generated/api/Models/Api20200215/LanguageExtensionsList.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/LanguageExtensionsList.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class LanguageExtensionsList partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new LanguageExtensionsList(json) : null; } @@ -70,7 +70,7 @@ internal LanguageExtensionsList(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtension.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtension.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.PowerShell.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.PowerShell.cs index 8d8d5af8dfdd..95591e92aad2 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class ListResourceSkusResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ListResourceSkusResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ListResourceSkusResult(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListR /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,12 +94,12 @@ internal ListResourceSkusResult(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureResourceSkuTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureResourceSkuTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -112,7 +112,7 @@ internal ListResourceSkusResult(global::System.Management.Automation.PSObject co return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureResourceSkuTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureResourceSkuTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.TypeConverter.cs index 16066d02e210..66e6c79f9a10 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.cs b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.cs rename to src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.cs index 31d54b9ce43c..d754b75dbefa 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.cs @@ -1,19 +1,19 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// List of available SKUs for a Kusto Cluster. public partial class ListResourceSkusResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku[] _value; /// The collection of available SKUs for an existing resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public ListResourceSkusResult() @@ -31,8 +31,8 @@ public partial interface IListResourceSkusResult : ReadOnly = false, Description = @"The collection of available SKUs for an existing resource.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku[] Value { get; set; } } /// List of available SKUs for a Kusto Cluster. @@ -40,7 +40,7 @@ internal partial interface IListResourceSkusResultInternal { /// The collection of available SKUs for an existing resource. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.json.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.json.cs index b1f1ba4b3dfc..e6ddad2b7763 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ListResourceSkusResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ListResourceSkusResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class ListResourceSkusResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IListResourceSkusResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IListResourceSkusResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ListResourceSkusResult(json) : null; } @@ -70,7 +70,7 @@ internal ListResourceSkusResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AzureResourceSku.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AzureResourceSku.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/Operation.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/Operation.PowerShell.cs similarity index 75% rename from src/Kusto/generated/api/Models/Api20200215/Operation.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/Operation.PowerShell.cs index b8f61eb03e88..25edcad83c0e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Operation.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Operation.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class Operation partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Operation(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Operation(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOpera /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,19 +94,19 @@ internal Operation(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationDisplayTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Origin, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Origin, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -119,14 +119,14 @@ internal Operation(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationDisplayTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Origin, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationPropertiesTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Origin, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/Operation.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/Operation.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/Operation.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/Operation.TypeConverter.cs index 2dee2e623c89..346aa22eb7bc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Operation.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Operation.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/Operation.cs b/src/Kusto/generated/api/Models/Api20200614/Operation.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/Operation.cs rename to src/Kusto/generated/api/Models/Api20200614/Operation.cs index 59c005762549..606659c0d435 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Operation.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Operation.cs @@ -1,38 +1,38 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A REST API operation public partial class Operation : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay _display; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay _display; /// The object that describes the operation. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationDisplay()); set => this._display = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationDisplay()); set => this._display = value; } /// The friendly name of the operation. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Description = value; } + public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Description = value; } /// For example: read, write, delete. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Operation = value; } + public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Operation = value; } /// Friendly name of the resource provider. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Provider = value; } + public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Provider = value; } /// The resource type on which the operation is performed. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)Display).Resource = value; } + public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)Display).Resource = value; } /// Internal Acessors for Display - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationDisplay()); set { {_display = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationDisplay()); set { {_display = value;} } } /// Backing field for property. private string _name; @@ -49,11 +49,11 @@ public partial class Operation : public string Origin { get => this._origin; set => this._origin = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties _property; /// Properties of the operation. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationProperties()); set => this._property = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationProperties()); set => this._property = value; } /// Creates an new instance. public Operation() @@ -119,8 +119,8 @@ public partial interface IOperation : ReadOnly = false, Description = @"Properties of the operation.", SerializedName = @"properties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties Property { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties Property { get; set; } } /// A REST API operation @@ -128,7 +128,7 @@ internal partial interface IOperationInternal { /// The object that describes the operation. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay Display { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay Display { get; set; } /// The friendly name of the operation. string DisplayDescription { get; set; } /// For example: read, write, delete. @@ -142,7 +142,7 @@ internal partial interface IOperationInternal /// The intended executor of the operation. string Origin { get; set; } /// Properties of the operation. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties Property { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/Operation.json.cs b/src/Kusto/generated/api/Models/Api20200614/Operation.json.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/Operation.json.cs rename to src/Kusto/generated/api/Models/Api20200614/Operation.json.cs index a42ccc78ab98..04cacc6f3e4e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/Operation.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/Operation.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class Operation partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new Operation(json) : null; } @@ -70,10 +70,10 @@ internal Operation(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObj { return; } - {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationDisplay.FromJson(__jsonDisplay) : Display;} + {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationDisplay.FromJson(__jsonDisplay) : Display;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_origin = If( json?.PropertyT("origin"), out var __jsonOrigin) ? (string)__jsonOrigin : (string)Origin;} - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.PowerShell.cs similarity index 83% rename from src/Kusto/generated/api/Models/Api20200215/OperationDisplay.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationDisplay.PowerShell.cs index f3caed0f2219..2ace4a93a875 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class OperationDisplay partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationDisplay(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationDisplay(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOpera /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,15 +94,15 @@ internal OperationDisplay(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -115,10 +115,10 @@ internal OperationDisplay(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/OperationDisplay.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationDisplay.TypeConverter.cs index 0dcb5bc3709e..4c72ef4278ef 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.cs b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/OperationDisplay.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationDisplay.cs index d478c48a7849..47d161769a2a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The object that describes the operation. public partial class OperationDisplay : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplayInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplayInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.json.cs b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/OperationDisplay.json.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationDisplay.json.cs index 173ffc349730..66c26a57b3da 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationDisplay.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationDisplay.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class OperationDisplay partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new OperationDisplay(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.PowerShell.cs similarity index 83% rename from src/Kusto/generated/api/Models/Api20200215/OperationListResult.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationListResult.PowerShell.cs index 7ec745189f28..d398b7eb84f5 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -51,27 +51,27 @@ public partial class OperationListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationListResult(content); } @@ -81,10 +81,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOpera /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -97,13 +97,13 @@ internal OperationListResult(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -116,8 +116,8 @@ internal OperationListResult(global::System.Management.Automation.PSObject conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.OperationTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/OperationListResult.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationListResult.TypeConverter.cs index cd92f76fe8f8..0cbfe84632c4 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.cs b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.cs similarity index 91% rename from src/Kusto/generated/api/Models/Api20200215/OperationListResult.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationListResult.cs index b890ecd865bf..61ba7aba823a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -7,8 +7,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 /// set of results. /// public partial class OperationListResult : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResultInternal { /// Backing field for property. @@ -19,11 +19,11 @@ public partial class OperationListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation[] _value; /// The list of operations supported by the resource provider. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public OperationListResult() @@ -50,8 +50,8 @@ public partial interface IOperationListResult : ReadOnly = false, Description = @"The list of operations supported by the resource provider.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation[] Value { get; set; } } /// Result of the request to list REST API operations. It contains a list of operations and a URL nextLink to get the next @@ -62,7 +62,7 @@ internal partial interface IOperationListResultInternal /// The URL to get the next set of operation list results if there are any. string NextLink { get; set; } /// The list of operations supported by the resource provider. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.json.cs b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.json.cs similarity index 94% rename from src/Kusto/generated/api/Models/Api20200215/OperationListResult.json.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationListResult.json.cs index d39075d66cc5..367dbf4a0d29 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationListResult.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationListResult.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -50,13 +50,13 @@ public partial class OperationListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new OperationListResult(json) : null; } @@ -74,7 +74,7 @@ internal OperationListResult(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Js return; } {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Operation.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Operation.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.PowerShell.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/OperationProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationProperties.PowerShell.cs index 7d78a134b6ab..e475f845acf4 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class OperationProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationProperties(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOpera /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -98,7 +98,7 @@ internal OperationProperties(global::System.Collections.IDictionary content) } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/OperationProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationProperties.TypeConverter.cs index df72f63ca6ba..1e76daa6ff86 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.cs b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/OperationProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationProperties.cs index ea9b69da13c0..6ee5d05588e8 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Properties of the operation. public partial class OperationProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationPropertiesInternal { /// Creates an new instance. diff --git a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/OperationProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/OperationProperties.json.cs index dd4b3d7c5153..d03a91cc86ba 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OperationProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OperationProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class OperationProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperationProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperationProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new OperationProperties(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.PowerShell.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.PowerShell.cs index e6cd0cdcc087..c1d328ff5d68 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class OptimizedAutoscale partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OptimizedAutoscale(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OptimizedAutoscale(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptim /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,15 +94,15 @@ internal OptimizedAutoscale(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).IsEnabled = (bool) content.GetValueForProperty("IsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).IsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Version = (int) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Version, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).IsEnabled = (bool) content.GetValueForProperty("IsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).IsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Version = (int) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Version, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -115,10 +115,10 @@ internal OptimizedAutoscale(global::System.Management.Automation.PSObject conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).IsEnabled = (bool) content.GetValueForProperty("IsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).IsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Version = (int) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal)this).Version, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).IsEnabled = (bool) content.GetValueForProperty("IsEnabled",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).IsEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Maximum = (int) content.GetValueForProperty("Maximum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Maximum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Minimum = (int) content.GetValueForProperty("Minimum",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Minimum, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Version = (int) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal)this).Version, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.TypeConverter.cs index e0e97f228135..8da6ec22f746 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.cs b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.cs rename to src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.cs index 127e063669d1..50b3e7d3b665 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A class that contains the optimized auto scale definition. public partial class OptimizedAutoscale : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscaleInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscaleInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.json.cs b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.json.cs rename to src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.json.cs index 7a4028f88930..4dcc7617a7a3 100644 --- a/src/Kusto/generated/api/Models/Api20200215/OptimizedAutoscale.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/OptimizedAutoscale.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class OptimizedAutoscale partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOptimizedAutoscale FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOptimizedAutoscale FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new OptimizedAutoscale(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.PowerShell.cs similarity index 77% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.PowerShell.cs index b3722607fab1..42674d9c8b1a 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class ReadOnlyFollowingDatabase partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ReadOnlyFollowingDatabase(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ReadOnlyFollowingDatabase(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadO /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,25 +94,25 @@ internal ReadOnlyFollowingDatabase(global::System.Collections.IDictionary conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabasePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabasePropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -125,20 +125,20 @@ internal ReadOnlyFollowingDatabase(global::System.Management.Automation.PSObject return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabasePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabasePropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.TypeConverter.cs index 904b8b7e687f..192aacb9ec36 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.cs similarity index 84% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.cs index 9a5ed414fe38..ac2a10892bd9 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.cs @@ -1,25 +1,25 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing a read only following database. public partial class ReadOnlyFollowingDatabase : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// - /// Backing field for Inherited model + /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database(); /// The name of the attached database configuration cluster [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string AttachedDatabaseConfigurationName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).AttachedDatabaseConfigurationName; } + public string AttachedDatabaseConfigurationName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).AttachedDatabaseConfigurationName; } /// The time the data should be kept in cache for fast queries in TimeSpan. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public global::System.TimeSpan? HotCachePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).HotCachePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).HotCachePeriod = value; } + public global::System.TimeSpan? HotCachePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).HotCachePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).HotCachePeriod = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -29,15 +29,15 @@ public partial class ReadOnlyFollowingDatabase : /// Kind of the database [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Kind = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Kind = value; } /// The name of the leader cluster [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string LeaderClusterResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).LeaderClusterResourceId; } + public string LeaderClusterResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).LeaderClusterResourceId; } /// Resource location. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Location = value; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Location = value; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Id = value; } @@ -49,25 +49,25 @@ public partial class ReadOnlyFollowingDatabase : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Type = value; } /// Internal Acessors for AttachedDatabaseConfigurationName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal.AttachedDatabaseConfigurationName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).AttachedDatabaseConfigurationName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).AttachedDatabaseConfigurationName = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal.AttachedDatabaseConfigurationName { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).AttachedDatabaseConfigurationName; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).AttachedDatabaseConfigurationName = value; } /// Internal Acessors for LeaderClusterResourceId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal.LeaderClusterResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).LeaderClusterResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).LeaderClusterResourceId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal.LeaderClusterResourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).LeaderClusterResourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).LeaderClusterResourceId = value; } /// Internal Acessors for PrincipalsModificationKind - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal.PrincipalsModificationKind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).PrincipalsModificationKind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).PrincipalsModificationKind = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal.PrincipalsModificationKind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).PrincipalsModificationKind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).PrincipalsModificationKind = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabaseProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabaseProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for SoftDeletePeriod - global::System.TimeSpan? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal.SoftDeletePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).SoftDeletePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).SoftDeletePeriod = value; } + global::System.TimeSpan? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal.SoftDeletePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).SoftDeletePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).SoftDeletePeriod = value; } /// Internal Acessors for Statistics - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseInternal.Statistics { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).Statistics; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).Statistics = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseInternal.Statistics { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).Statistics; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).Statistics = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] @@ -75,28 +75,28 @@ public partial class ReadOnlyFollowingDatabase : /// The principals modification kind of the database [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? PrincipalsModificationKind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).PrincipalsModificationKind; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? PrincipalsModificationKind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).PrincipalsModificationKind; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties _property; /// The database properties. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabaseProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabaseProperties()); set => this._property = value; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).ProvisioningState; } /// /// The time the data should be kept before it stops being accessible to queries in TimeSpan. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public global::System.TimeSpan? SoftDeletePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).SoftDeletePeriod; } + public global::System.TimeSpan? SoftDeletePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).SoftDeletePeriod; } /// The database size - the total size of compressed data and index in bytes. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).StatisticsSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)Property).StatisticsSize = value; } + public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).StatisticsSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)Property).StatisticsSize = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -125,7 +125,7 @@ public ReadOnlyFollowingDatabase() /// Class representing a read only following database. public partial interface IReadOnlyFollowingDatabase : Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase { /// The name of the attached database configuration cluster [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( @@ -189,7 +189,7 @@ public partial interface IReadOnlyFollowingDatabase : } /// Class representing a read only following database. internal partial interface IReadOnlyFollowingDatabaseInternal : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal { /// The name of the attached database configuration cluster string AttachedDatabaseConfigurationName { get; set; } @@ -200,7 +200,7 @@ internal partial interface IReadOnlyFollowingDatabaseInternal : /// The principals modification kind of the database Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? PrincipalsModificationKind { get; set; } /// The database properties. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties Property { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } /// @@ -208,7 +208,7 @@ internal partial interface IReadOnlyFollowingDatabaseInternal : /// global::System.TimeSpan? SoftDeletePeriod { get; set; } /// The statistics of the database. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Statistics { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Statistics { get; set; } /// The database size - the total size of compressed data and index in bytes. float? StatisticsSize { get; set; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.json.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.json.cs index 09e42bea0c12..a8d82dbacddd 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabase.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabase.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class ReadOnlyFollowingDatabase partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabase FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabase FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ReadOnlyFollowingDatabase(json) : null; } @@ -70,8 +70,8 @@ internal ReadOnlyFollowingDatabase(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runt { return; } - __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabaseProperties.FromJson(__jsonProperties) : Property;} + __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabaseProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.PowerShell.cs similarity index 78% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.PowerShell.cs index bcc8e135e080..b630fa1455a3 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,29 +48,29 @@ public partial class ReadOnlyFollowingDatabaseProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ReadOnlyFollowingDatabaseProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ReadOnlyFollowingDatabaseProperties(content); } @@ -80,10 +80,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadO /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -96,19 +96,19 @@ internal ReadOnlyFollowingDatabaseProperties(global::System.Collections.IDiction return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -121,14 +121,14 @@ internal ReadOnlyFollowingDatabaseProperties(global::System.Management.Automatio return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName = (string) content.GetValueForProperty("AttachedDatabaseConfigurationName",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).AttachedDatabaseConfigurationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId = (string) content.GetValueForProperty("LeaderClusterResourceId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).LeaderClusterResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind?) content.GetValueForProperty("PrincipalsModificationKind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).PrincipalsModificationKind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.TypeConverter.cs index b9cce22a8394..e7a9c277418e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -102,14 +102,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.cs index 69ee7dbd1fe9..c7f889b208ba 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing the Kusto database properties. public partial class ReadOnlyFollowingDatabaseProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal { /// Backing field for property. @@ -30,22 +30,22 @@ public partial class ReadOnlyFollowingDatabaseProperties : public string LeaderClusterResourceId { get => this._leaderClusterResourceId; } /// Internal Acessors for AttachedDatabaseConfigurationName - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal.AttachedDatabaseConfigurationName { get => this._attachedDatabaseConfigurationName; set { {_attachedDatabaseConfigurationName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal.AttachedDatabaseConfigurationName { get => this._attachedDatabaseConfigurationName; set { {_attachedDatabaseConfigurationName = value;} } } /// Internal Acessors for LeaderClusterResourceId - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal.LeaderClusterResourceId { get => this._leaderClusterResourceId; set { {_leaderClusterResourceId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal.LeaderClusterResourceId { get => this._leaderClusterResourceId; set { {_leaderClusterResourceId = value;} } } /// Internal Acessors for PrincipalsModificationKind - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal.PrincipalsModificationKind { get => this._principalsModificationKind; set { {_principalsModificationKind = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal.PrincipalsModificationKind { get => this._principalsModificationKind; set { {_principalsModificationKind = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for SoftDeletePeriod - global::System.TimeSpan? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal.SoftDeletePeriod { get => this._softDeletePeriod; set { {_softDeletePeriod = value;} } } + global::System.TimeSpan? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal.SoftDeletePeriod { get => this._softDeletePeriod; set { {_softDeletePeriod = value;} } } /// Internal Acessors for Statistics - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabasePropertiesInternal.Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics()); set { {_statistics = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabasePropertiesInternal.Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics()); set { {_statistics = value;} } } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.PrincipalsModificationKind? _principalsModificationKind; @@ -71,15 +71,15 @@ public partial class ReadOnlyFollowingDatabaseProperties : public global::System.TimeSpan? SoftDeletePeriod { get => this._softDeletePeriod; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics _statistics; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics _statistics; /// The statistics of the database. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics()); } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics()); } /// The database size - the total size of compressed data and index in bytes. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)Statistics).Size; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)Statistics).Size = value; } + public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)Statistics).Size; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)Statistics).Size = value; } /// Creates an new instance. public ReadOnlyFollowingDatabaseProperties() @@ -170,7 +170,7 @@ internal partial interface IReadOnlyFollowingDatabasePropertiesInternal /// global::System.TimeSpan? SoftDeletePeriod { get; set; } /// The statistics of the database. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Statistics { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Statistics { get; set; } /// The database size - the total size of compressed data and index in bytes. float? StatisticsSize { get; set; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.json.cs index ef1b68e23a39..e07b5350726f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadOnlyFollowingDatabaseProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadOnlyFollowingDatabaseProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class ReadOnlyFollowingDatabaseProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadOnlyFollowingDatabaseProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadOnlyFollowingDatabaseProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ReadOnlyFollowingDatabaseProperties(json) : null; } @@ -70,7 +70,7 @@ internal ReadOnlyFollowingDatabaseProperties(Microsoft.Azure.PowerShell.Cmdlets. { return; } - {_statistics = If( json?.PropertyT("statistics"), out var __jsonStatistics) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics.FromJson(__jsonStatistics) : Statistics;} + {_statistics = If( json?.PropertyT("statistics"), out var __jsonStatistics) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics.FromJson(__jsonStatistics) : Statistics;} {_attachedDatabaseConfigurationName = If( json?.PropertyT("attachedDatabaseConfigurationName"), out var __jsonAttachedDatabaseConfigurationName) ? (string)__jsonAttachedDatabaseConfigurationName : (string)AttachedDatabaseConfigurationName;} {_hotCachePeriod = If( json?.PropertyT("hotCachePeriod"), out var __jsonHotCachePeriod) ? global::System.Xml.XmlConvert.ToTimeSpan( __jsonHotCachePeriod ) : HotCachePeriod;} {_leaderClusterResourceId = If( json?.PropertyT("leaderClusterResourceId"), out var __jsonLeaderClusterResourceId) ? (string)__jsonLeaderClusterResourceId : (string)LeaderClusterResourceId;} diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.PowerShell.cs similarity index 75% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.PowerShell.cs index 1fca62251af6..080ca0f104a0 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class ReadWriteDatabase partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ReadWriteDatabase(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ReadWriteDatabase(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadW /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,23 +94,23 @@ internal ReadWriteDatabase(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabasePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabasePropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).IsFollowed = (string) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).IsFollowed, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).IsFollowed = (bool?) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).IsFollowed, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -123,18 +123,18 @@ internal ReadWriteDatabase(global::System.Management.Automation.PSObject content return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabasePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabasePropertiesTypeConverter.ConvertFrom); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).IsFollowed = (string) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).IsFollowed, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind) content.GetValueForProperty("Kind",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Kind, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).IsFollowed = (bool?) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).IsFollowed, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.TypeConverter.cs index b952fcb7949d..8f5dc7a9aecb 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.cs similarity index 80% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.cs index 04e3b55f053d..6bcb3f5e35e5 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.cs @@ -1,21 +1,21 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing a read write database. public partial class ReadWriteDatabase : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IValidates { /// - /// Backing field for Inherited model + /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database(); /// The time the data should be kept in cache for fast queries in TimeSpan. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public global::System.TimeSpan? HotCachePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).HotCachePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).HotCachePeriod = value; } + public global::System.TimeSpan? HotCachePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).HotCachePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).HotCachePeriod = value; } /// /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -25,15 +25,15 @@ public partial class ReadWriteDatabase : /// Indicates whether the database is followed. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public string IsFollowed { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).IsFollowed; } + public bool? IsFollowed { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).IsFollowed; } /// Kind of the database [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Kind = value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.Kind Kind { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Kind; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Kind = value; } /// Resource location. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal)__database).Location = value; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal)__database).Location = value; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Id = value; } @@ -45,41 +45,41 @@ public partial class ReadWriteDatabase : string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Type = value; } /// Internal Acessors for IsFollowed - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal.IsFollowed { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).IsFollowed; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).IsFollowed = value; } + bool? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal.IsFollowed { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).IsFollowed; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).IsFollowed = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabaseProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabaseProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for Statistics - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseInternal.Statistics { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).Statistics; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).Statistics = value; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseInternal.Statistics { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).Statistics; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).Statistics = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api10.IResourceInternal)__database).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties _property; /// The database properties. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabaseProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabaseProperties()); set => this._property = value; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).ProvisioningState; } /// /// The time the data should be kept before it stops being accessible to queries in TimeSpan. /// [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public global::System.TimeSpan? SoftDeletePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).SoftDeletePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).SoftDeletePeriod = value; } + public global::System.TimeSpan? SoftDeletePeriod { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).SoftDeletePeriod; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).SoftDeletePeriod = value; } /// The database size - the total size of compressed data and index in bytes. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).StatisticsSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)Property).StatisticsSize = value; } + public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).StatisticsSize; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)Property).StatisticsSize = value; } /// /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. @@ -108,7 +108,7 @@ public ReadWriteDatabase() /// Class representing a read write database. public partial interface IReadWriteDatabase : Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase { /// The time the data should be kept in cache for fast queries in TimeSpan. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( @@ -124,8 +124,8 @@ public partial interface IReadWriteDatabase : ReadOnly = true, Description = @"Indicates whether the database is followed.", SerializedName = @"isFollowed", - PossibleTypes = new [] { typeof(string) })] - string IsFollowed { get; } + PossibleTypes = new [] { typeof(bool) })] + bool? IsFollowed { get; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -156,14 +156,14 @@ public partial interface IReadWriteDatabase : } /// Class representing a read write database. internal partial interface IReadWriteDatabaseInternal : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseInternal { /// The time the data should be kept in cache for fast queries in TimeSpan. global::System.TimeSpan? HotCachePeriod { get; set; } /// Indicates whether the database is followed. - string IsFollowed { get; set; } + bool? IsFollowed { get; set; } /// The database properties. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties Property { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } /// @@ -171,7 +171,7 @@ internal partial interface IReadWriteDatabaseInternal : /// global::System.TimeSpan? SoftDeletePeriod { get; set; } /// The statistics of the database. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Statistics { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Statistics { get; set; } /// The database size - the total size of compressed data and index in bytes. float? StatisticsSize { get; set; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.json.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.json.cs index 090dc81a7fc0..4c8a921f13a4 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabase.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabase.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class ReadWriteDatabase partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabase FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabase FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ReadWriteDatabase(json) : null; } @@ -70,8 +70,8 @@ internal ReadWriteDatabase(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json { return; } - __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabaseProperties.FromJson(__jsonProperties) : Property;} + __database = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabaseProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.PowerShell.cs similarity index 78% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.PowerShell.cs index 9822e5394bf7..7dad816b1ffa 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class ReadWriteDatabaseProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ReadWriteDatabaseProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ReadWriteDatabaseProperties(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadW /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,17 +94,17 @@ internal ReadWriteDatabaseProperties(global::System.Collections.IDictionary cont return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).IsFollowed = (string) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).IsFollowed, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).IsFollowed = (bool?) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).IsFollowed, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -117,12 +117,12 @@ internal ReadWriteDatabaseProperties(global::System.Management.Automation.PSObje return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatisticsTypeConverter.ConvertFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).IsFollowed = (string) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).IsFollowed, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).Statistics = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics) content.GetValueForProperty("Statistics",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).Statistics, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatisticsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod = (global::System.TimeSpan?) content.GetValueForProperty("HotCachePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).HotCachePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).IsFollowed = (bool?) content.GetValueForProperty("IsFollowed",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).IsFollowed, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod = (global::System.TimeSpan?) content.GetValueForProperty("SoftDeletePeriod",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).SoftDeletePeriod, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).StatisticsSize = (float?) content.GetValueForProperty("StatisticsSize",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal)this).StatisticsSize, (__y)=> (float) global::System.Convert.ChangeType(__y, typeof(float))); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.TypeConverter.cs index 9bdcc17d2356..0a113934d02f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.cs index 89f67f999d3a..335da88a1a38 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Class representing the Kusto database properties. public partial class ReadWriteDatabaseProperties : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal { /// Backing field for property. @@ -16,20 +16,20 @@ public partial class ReadWriteDatabaseProperties : public global::System.TimeSpan? HotCachePeriod { get => this._hotCachePeriod; set => this._hotCachePeriod = value; } /// Backing field for property. - private string _isFollowed; + private bool? _isFollowed; /// Indicates whether the database is followed. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public string IsFollowed { get => this._isFollowed; } + public bool? IsFollowed { get => this._isFollowed; } /// Internal Acessors for IsFollowed - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal.IsFollowed { get => this._isFollowed; set { {_isFollowed = value;} } } + bool? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal.IsFollowed { get => this._isFollowed; set { {_isFollowed = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for Statistics - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabasePropertiesInternal.Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics()); set { {_statistics = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabasePropertiesInternal.Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics()); set { {_statistics = value;} } } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? _provisioningState; @@ -48,15 +48,15 @@ public partial class ReadWriteDatabaseProperties : public global::System.TimeSpan? SoftDeletePeriod { get => this._softDeletePeriod; set => this._softDeletePeriod = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics _statistics; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics _statistics; /// The statistics of the database. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics()); } + internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Statistics { get => (this._statistics = this._statistics ?? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics()); } /// The database size - the total size of compressed data and index in bytes. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Inlined)] - public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)Statistics).Size; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatisticsInternal)Statistics).Size = value; } + public float? StatisticsSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)Statistics).Size; set => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatisticsInternal)Statistics).Size = value; } /// Creates an new instance. public ReadWriteDatabaseProperties() @@ -82,8 +82,8 @@ public partial interface IReadWriteDatabaseProperties : ReadOnly = true, Description = @"Indicates whether the database is followed.", SerializedName = @"isFollowed", - PossibleTypes = new [] { typeof(string) })] - string IsFollowed { get; } + PossibleTypes = new [] { typeof(bool) })] + bool? IsFollowed { get; } /// The provisioned state of the resource. [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -119,7 +119,7 @@ internal partial interface IReadWriteDatabasePropertiesInternal /// The time the data should be kept in cache for fast queries in TimeSpan. global::System.TimeSpan? HotCachePeriod { get; set; } /// Indicates whether the database is followed. - string IsFollowed { get; set; } + bool? IsFollowed { get; set; } /// The provisioned state of the resource. Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.ProvisioningState? ProvisioningState { get; set; } /// @@ -127,7 +127,7 @@ internal partial interface IReadWriteDatabasePropertiesInternal /// global::System.TimeSpan? SoftDeletePeriod { get; set; } /// The statistics of the database. - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabaseStatistics Statistics { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabaseStatistics Statistics { get; set; } /// The database size - the total size of compressed data and index in bytes. float? StatisticsSize { get; set; } diff --git a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.json.cs b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.json.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.json.cs rename to src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.json.cs index f141ef84afd4..2ecd6e7c88b5 100644 --- a/src/Kusto/generated/api/Models/Api20200215/ReadWriteDatabaseProperties.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/ReadWriteDatabaseProperties.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class ReadWriteDatabaseProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IReadWriteDatabaseProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IReadWriteDatabaseProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new ReadWriteDatabaseProperties(json) : null; } @@ -70,9 +70,9 @@ internal ReadWriteDatabaseProperties(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Ru { return; } - {_statistics = If( json?.PropertyT("statistics"), out var __jsonStatistics) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabaseStatistics.FromJson(__jsonStatistics) : Statistics;} + {_statistics = If( json?.PropertyT("statistics"), out var __jsonStatistics) ? Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabaseStatistics.FromJson(__jsonStatistics) : Statistics;} {_hotCachePeriod = If( json?.PropertyT("hotCachePeriod"), out var __jsonHotCachePeriod) ? global::System.Xml.XmlConvert.ToTimeSpan( __jsonHotCachePeriod ) : HotCachePeriod;} - {_isFollowed = If( json?.PropertyT("isFollowed"), out var __jsonIsFollowed) ? (string)__jsonIsFollowed : (string)IsFollowed;} + {_isFollowed = If( json?.PropertyT("isFollowed"), out var __jsonIsFollowed) ? (bool?)__jsonIsFollowed : IsFollowed;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} {_softDeletePeriod = If( json?.PropertyT("softDeletePeriod"), out var __jsonSoftDeletePeriod) ? global::System.Xml.XmlConvert.ToTimeSpan( __jsonSoftDeletePeriod ) : SoftDeletePeriod;} AfterFromJson(json); @@ -104,7 +104,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode ToJson(Mic AddIf( (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode)(null != this._hotCachePeriod ? new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(global::System.Xml.XmlConvert.ToString((global::System.TimeSpan)this._hotCachePeriod)): null), "hotCachePeriod" ,container.Add ); if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.SerializationMode.IncludeReadOnly)) { - AddIf( null != (((object)this._isFollowed)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString(this._isFollowed.ToString()) : null, "isFollowed" ,container.Add ); + AddIf( null != this._isFollowed ? (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonBoolean((bool)this._isFollowed) : null, "isFollowed" ,container.Add ); } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.SerializationMode.IncludeReadOnly)) { diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.PowerShell.cs similarity index 77% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescription.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescription.PowerShell.cs index 5266445e6994..0737145f457d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class SkuDescription partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SkuDescription(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SkuDescription(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDe /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,17 +94,17 @@ internal SkuDescription(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).LocationInfo = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem[]) content.GetValueForProperty("LocationInfo",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).LocationInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuLocationInfoItemTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Location = (string[]) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Location, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).ResourceType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Restriction = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem[]) content.GetValueForProperty("Restriction",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Restriction, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescriptionRestrictionsItemTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Tier = (string) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Tier, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).LocationInfo = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem[]) content.GetValueForProperty("LocationInfo",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).LocationInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuLocationInfoItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Location = (string[]) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Location, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).ResourceType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Restriction = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem[]) content.GetValueForProperty("Restriction",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Restriction, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescriptionRestrictionsItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Tier = (string) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Tier, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -117,12 +117,12 @@ internal SkuDescription(global::System.Management.Automation.PSObject content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Name, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).LocationInfo = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem[]) content.GetValueForProperty("LocationInfo",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).LocationInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuLocationInfoItemTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Location = (string[]) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Location, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).ResourceType, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Restriction = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem[]) content.GetValueForProperty("Restriction",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Restriction, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescriptionRestrictionsItemTypeConverter.ConvertFrom)); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Tier = (string) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal)this).Tier, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).LocationInfo = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem[]) content.GetValueForProperty("LocationInfo",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).LocationInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuLocationInfoItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Location = (string[]) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Location, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).ResourceType = (string) content.GetValueForProperty("ResourceType",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).ResourceType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Restriction = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem[]) content.GetValueForProperty("Restriction",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Restriction, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescriptionRestrictionsItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Tier = (string) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal)this).Tier, global::System.Convert.ToString); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescription.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescription.TypeConverter.cs index e258e364313b..1b34505cd12f 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescription.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescription.cs index 7743e12bd4cf..1238d1a5dfef 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The Kusto SKU description of given resource type public partial class SkuDescription : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal { /// Backing field for property. @@ -16,29 +16,29 @@ public partial class SkuDescription : public string[] Location { get => this._location; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem[] _locationInfo; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem[] _locationInfo; /// Locations and zones [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem[] LocationInfo { get => this._locationInfo; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem[] LocationInfo { get => this._locationInfo; } /// Internal Acessors for Location - string[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal.Location { get => this._location; set { {_location = value;} } } + string[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal.Location { get => this._location; set { {_location = value;} } } /// Internal Acessors for LocationInfo - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal.LocationInfo { get => this._locationInfo; set { {_locationInfo = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal.LocationInfo { get => this._locationInfo; set { {_locationInfo = value;} } } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal.Name { get => this._name; set { {_name = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal.Name { get => this._name; set { {_name = value;} } } /// Internal Acessors for ResourceType - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal.ResourceType { get => this._resourceType; set { {_resourceType = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal.ResourceType { get => this._resourceType; set { {_resourceType = value;} } } /// Internal Acessors for Restriction - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal.Restriction { get => this._restriction; set { {_restriction = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal.Restriction { get => this._restriction; set { {_restriction = value;} } } /// Internal Acessors for Tier - string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionInternal.Tier { get => this._tier; set { {_tier = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionInternal.Tier { get => this._tier; set { {_tier = value;} } } /// Backing field for property. private string _name; @@ -55,11 +55,11 @@ public partial class SkuDescription : public string ResourceType { get => this._resourceType; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem[] _restriction; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem[] _restriction; /// The restrictions because of which SKU cannot be used [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem[] Restriction { get => this._restriction; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem[] Restriction { get => this._restriction; } /// Backing field for property. private string _tier; @@ -92,8 +92,8 @@ public partial interface ISkuDescription : ReadOnly = true, Description = @"Locations and zones", SerializedName = @"locationInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem[] LocationInfo { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem[] LocationInfo { get; } /// The name of the SKU [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -116,8 +116,8 @@ public partial interface ISkuDescription : ReadOnly = true, Description = @"The restrictions because of which SKU cannot be used", SerializedName = @"restrictions", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem[] Restriction { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem[] Restriction { get; } /// The tier of the SKU [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( Required = false, @@ -135,13 +135,13 @@ internal partial interface ISkuDescriptionInternal /// The set of locations that the SKU is available string[] Location { get; set; } /// Locations and zones - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem[] LocationInfo { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem[] LocationInfo { get; set; } /// The name of the SKU string Name { get; set; } /// The resource type string ResourceType { get; set; } /// The restrictions because of which SKU cannot be used - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem[] Restriction { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem[] Restriction { get; set; } /// The tier of the SKU string Tier { get; set; } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.json.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.json.cs similarity index 95% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescription.json.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescription.json.cs index 49d783ddfb72..6dd1690c9a5e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescription.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescription.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class SkuDescription partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new SkuDescription(json) : null; } @@ -71,10 +71,10 @@ internal SkuDescription(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.Js return; } {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_locationInfo = If( json?.PropertyT("locationInfo"), out var __jsonLocationInfo) ? If( __jsonLocationInfo as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuLocationInfoItem.FromJson(__u) )) ))() : null : LocationInfo;} + {_locationInfo = If( json?.PropertyT("locationInfo"), out var __jsonLocationInfo) ? If( __jsonLocationInfo as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuLocationInfoItem.FromJson(__u) )) ))() : null : LocationInfo;} {_location = If( json?.PropertyT("locations"), out var __jsonLocations) ? If( __jsonLocations as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(string) (__p is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonString __o ? (string)(__o.ToString()) : null)) ))() : null : Location;} {_resourceType = If( json?.PropertyT("resourceType"), out var __jsonResourceType) ? (string)__jsonResourceType : (string)ResourceType;} - {_restriction = If( json?.PropertyT("restrictions"), out var __jsonRestrictions) ? If( __jsonRestrictions as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __l) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__l, (__k)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescriptionRestrictionsItem.FromJson(__k) )) ))() : null : Restriction;} + {_restriction = If( json?.PropertyT("restrictions"), out var __jsonRestrictions) ? If( __jsonRestrictions as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __l) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__l, (__k)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescriptionRestrictionsItem.FromJson(__k) )) ))() : null : Restriction;} {_tier = If( json?.PropertyT("tier"), out var __jsonTier) ? (string)__jsonTier : (string)Tier;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.PowerShell.cs index 3b0ba127cbb5..9a6105b09fdc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class SkuDescriptionList partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SkuDescriptionList(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SkuDescriptionList(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDe /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,12 +94,12 @@ internal SkuDescriptionList(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescriptionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescriptionTypeConverter.ConvertFrom)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -112,7 +112,7 @@ internal SkuDescriptionList(global::System.Management.Automation.PSObject conten return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescriptionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescriptionTypeConverter.ConvertFrom)); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.TypeConverter.cs index 3a3a73087847..5a22221a2ba9 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.cs similarity index 81% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.cs index b532f52a5750..8d89c0fbc17d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.cs @@ -1,22 +1,22 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The list of the EngagementFabric SKU descriptions public partial class SkuDescriptionList : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionListInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionListInternal { /// Internal Acessors for Value - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionListInternal.Value { get => this._value; set { {_value = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription[] Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionListInternal.Value { get => this._value; set { {_value = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription[] _value; /// SKU descriptions [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Origin(Microsoft.Azure.PowerShell.Cmdlets.Kusto.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription[] Value { get => this._value; } + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription[] Value { get => this._value; } /// Creates an new instance. public SkuDescriptionList() @@ -34,8 +34,8 @@ public partial interface ISkuDescriptionList : ReadOnly = true, Description = @"SKU descriptions", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription) })] - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription[] Value { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription) })] + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription[] Value { get; } } /// The list of the EngagementFabric SKU descriptions @@ -43,7 +43,7 @@ internal partial interface ISkuDescriptionListInternal { /// SKU descriptions - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription[] Value { get; set; } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.json.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.json.cs similarity index 94% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.json.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.json.cs index a43ab7d3da89..3bb3c9fc4022 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionList.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionList.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class SkuDescriptionList partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionList FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionList FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new SkuDescriptionList(json) : null; } @@ -70,7 +70,7 @@ internal SkuDescriptionList(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Jso { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.SkuDescription.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription) (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.SkuDescription.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.PowerShell.cs similarity index 92% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.PowerShell.cs index c28b57c1392a..3e75d9f624c7 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -47,29 +47,29 @@ public partial class SkuDescriptionRestrictionsItem partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SkuDescriptionRestrictionsItem(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SkuDescriptionRestrictionsItem(content); } @@ -79,10 +79,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDe /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -99,7 +99,7 @@ internal SkuDescriptionRestrictionsItem(global::System.Collections.IDictionary c } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.TypeConverter.cs index 7494de5be615..8e08f599a59d 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.cs index 2a5a978191db..20d7a4ac3523 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.cs @@ -1,10 +1,10 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; public partial class SkuDescriptionRestrictionsItem : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItemInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItemInternal { /// Creates an new instance. diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.json.cs b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.json.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.json.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.json.cs index 025408e614c9..2460f53490ef 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuDescriptionRestrictionsItem.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuDescriptionRestrictionsItem.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -46,13 +46,13 @@ public partial class SkuDescriptionRestrictionsItem partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescriptionRestrictionsItem FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescriptionRestrictionsItem FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new SkuDescriptionRestrictionsItem(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.PowerShell.cs similarity index 87% rename from src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.PowerShell.cs index f6f8caf06fb8..1e411733f348 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class SkuLocationInfoItem partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SkuLocationInfoItem(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SkuLocationInfoItem(content); } @@ -78,10 +78,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLo /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,13 +94,13 @@ internal SkuLocationInfoItem(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -113,8 +113,8 @@ internal SkuLocationInfoItem(global::System.Management.Automation.PSObject conte return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Location, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Zone = (string[]) content.GetValueForProperty("Zone",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal)this).Zone, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); AfterDeserializePSObject(content); } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.TypeConverter.cs index afad45014ada..e5d664385b54 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.cs b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.cs index 8ebb45ae94b5..76174fa94385 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// The locations and zones info for SKU. public partial class SkuLocationInfoItem : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItemInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItemInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.json.cs b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.json.cs rename to src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.json.cs index 44dbc1168ce1..2d6040c43a5b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/SkuLocationInfoItem.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/SkuLocationInfoItem.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class SkuLocationInfoItem partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuLocationInfoItem FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuLocationInfoItem FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new SkuLocationInfoItem(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.PowerShell.cs similarity index 89% rename from src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.PowerShell.cs index e384e7dcafe7..18283801f1b3 100644 --- a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class TrustedExternalTenant partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new TrustedExternalTenant(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new TrustedExternalTenant(content); } @@ -78,7 +78,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrust /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -86,7 +86,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrust public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.SerializationMode.IncludeAll)?.ToString(); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -99,12 +99,12 @@ internal TrustedExternalTenant(global::System.Collections.IDictionary content) return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenantInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenantInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenantInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenantInternal)this).Value, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -117,7 +117,7 @@ internal TrustedExternalTenant(global::System.Management.Automation.PSObject con return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenantInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenantInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenantInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenantInternal)this).Value, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.TypeConverter.cs index 06a4bc69d29a..5b0e9703b35e 100644 --- a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.cs b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.cs similarity index 96% rename from src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.cs rename to src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.cs index dfcd3bb5fe85..e01fae79593b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.cs +++ b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// Represents a tenant ID that is trusted by the cluster. public partial class TrustedExternalTenant : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenantInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenantInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.json.cs b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.json.cs rename to src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.json.cs index 05dcd11551b3..0cbd3ef32a81 100644 --- a/src/Kusto/generated/api/Models/Api20200215/TrustedExternalTenant.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/TrustedExternalTenant.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class TrustedExternalTenant partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new TrustedExternalTenant(json) : null; } diff --git a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.PowerShell.cs b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.PowerShell.cs similarity index 85% rename from src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.PowerShell.cs rename to src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.PowerShell.cs index 6229ed4d598e..d21d08b640bc 100644 --- a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.PowerShell.cs +++ b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.PowerShell.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -48,27 +48,27 @@ public partial class VirtualNetworkConfiguration partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new VirtualNetworkConfiguration(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new VirtualNetworkConfiguration(content); } @@ -78,7 +78,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtu /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -86,7 +86,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtu public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.SerializationMode.IncludeAll)?.ToString(); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -99,14 +99,14 @@ internal VirtualNetworkConfiguration(global::System.Collections.IDictionary cont return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId = (string) content.GetValueForProperty("DataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId = (string) content.GetValueForProperty("EnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).SubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId = (string) content.GetValueForProperty("DataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId = (string) content.GetValueForProperty("EnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).SubnetId, global::System.Convert.ToString); AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -119,9 +119,9 @@ internal VirtualNetworkConfiguration(global::System.Management.Automation.PSObje return; } // actually deserialize - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId = (string) content.GetValueForProperty("DataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId = (string) content.GetValueForProperty("EnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId, global::System.Convert.ToString); - ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal)this).SubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId = (string) content.GetValueForProperty("DataManagementPublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).DataManagementPublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId = (string) content.GetValueForProperty("EnginePublicIPId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).EnginePublicIPId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal)this).SubnetId, global::System.Convert.ToString); AfterDeserializePSObject(content); } } diff --git a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.TypeConverter.cs b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.TypeConverter.cs similarity index 98% rename from src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.TypeConverter.cs rename to src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.TypeConverter.cs index 7fc99890da50..572028ba88de 100644 --- a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.TypeConverter.cs +++ b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.TypeConverter.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell; @@ -101,14 +101,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.cs b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.cs rename to src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.cs index 498b5bb6945c..f3643adaec8b 100644 --- a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.cs +++ b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.cs @@ -1,11 +1,11 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; /// A class that contains virtual network definition. public partial class VirtualNetworkConfiguration : - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration, - Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfigurationInternal + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration, + Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfigurationInternal { /// Backing field for property. diff --git a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.json.cs b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.json.cs similarity index 97% rename from src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.json.cs rename to src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.json.cs index 4abd28af3099..6ab2ad3614f9 100644 --- a/src/Kusto/generated/api/Models/Api20200215/VirtualNetworkConfiguration.json.cs +++ b/src/Kusto/generated/api/Models/Api20200614/VirtualNetworkConfiguration.json.cs @@ -1,4 +1,4 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215 +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614 { using static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Extensions; @@ -47,13 +47,13 @@ public partial class VirtualNetworkConfiguration partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration. /// - public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IVirtualNetworkConfiguration FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IVirtualNetworkConfiguration FromJson(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Json.JsonObject json ? new VirtualNetworkConfiguration(json) : null; } diff --git a/src/Kusto/generated/api/Support/BlobStorageEventType.Completer.cs b/src/Kusto/generated/api/Support/BlobStorageEventType.Completer.cs new file mode 100644 index 000000000000..6a10a2ebebad --- /dev/null +++ b/src/Kusto/generated/api/Support/BlobStorageEventType.Completer.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support +{ + + /// Argument completer implementation for BlobStorageEventType. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventTypeTypeConverter))] + public partial struct BlobStorageEventType : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Microsoft.Storage.BlobCreated".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Microsoft.Storage.BlobCreated", "Microsoft.Storage.BlobCreated", global::System.Management.Automation.CompletionResultType.ParameterValue, "Microsoft.Storage.BlobCreated"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Microsoft.Storage.BlobRenamed".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("Microsoft.Storage.BlobRenamed", "Microsoft.Storage.BlobRenamed", global::System.Management.Automation.CompletionResultType.ParameterValue, "Microsoft.Storage.BlobRenamed"); + } + } + } +} \ No newline at end of file diff --git a/src/Kusto/generated/api/Support/BlobStorageEventType.TypeConverter.cs b/src/Kusto/generated/api/Support/BlobStorageEventType.TypeConverter.cs new file mode 100644 index 000000000000..6b29c1f95123 --- /dev/null +++ b/src/Kusto/generated/api/Support/BlobStorageEventType.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support +{ + + /// TypeConverter implementation for BlobStorageEventType. + public partial class BlobStorageEventTypeTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the + /// parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the + /// parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => BlobStorageEventType.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/Kusto/generated/api/Support/BlobStorageEventType.cs b/src/Kusto/generated/api/Support/BlobStorageEventType.cs new file mode 100644 index 000000000000..7a509b624ace --- /dev/null +++ b/src/Kusto/generated/api/Support/BlobStorageEventType.cs @@ -0,0 +1,97 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support +{ + + public partial struct BlobStorageEventType : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType MicrosoftStorageBlobCreated = @"Microsoft.Storage.BlobCreated"; + + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType MicrosoftStorageBlobRenamed = @"Microsoft.Storage.BlobRenamed"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Creates an instance of the + /// the value to create an instance for. + private BlobStorageEventType(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Conversion from arbitrary object to BlobStorageEventType + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new BlobStorageEventType(System.Convert.ToString(value)); + } + + /// Compares values of enum type BlobStorageEventType + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type BlobStorageEventType (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is BlobStorageEventType && Equals((BlobStorageEventType)obj); + } + + /// Returns hashCode for enum BlobStorageEventType + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for BlobStorageEventType + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to BlobStorageEventType + /// the value to convert to an instance of . + + public static implicit operator BlobStorageEventType(string value) + { + return new BlobStorageEventType(value); + } + + /// Implicit operator to convert BlobStorageEventType to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType e) + { + return e._value; + } + + /// Overriding != operator for enum BlobStorageEventType + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType e1, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum BlobStorageEventType + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType e1, Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/Kusto/generated/api/Support/EventGridDataFormat.Completer.cs b/src/Kusto/generated/api/Support/EventGridDataFormat.Completer.cs index 4499ad5bef4f..94a651b69e33 100644 --- a/src/Kusto/generated/api/Support/EventGridDataFormat.Completer.cs +++ b/src/Kusto/generated/api/Support/EventGridDataFormat.Completer.cs @@ -82,6 +82,14 @@ public partial struct EventGridDataFormat : { yield return new global::System.Management.Automation.CompletionResult("ORC", "ORC", global::System.Management.Automation.CompletionResultType.ParameterValue, "ORC"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "APACHEAVRO".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("APACHEAVRO", "APACHEAVRO", global::System.Management.Automation.CompletionResultType.ParameterValue, "APACHEAVRO"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "W3CLOGFILE".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("W3CLOGFILE", "W3CLOGFILE", global::System.Management.Automation.CompletionResultType.ParameterValue, "W3CLOGFILE"); + } } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Support/EventGridDataFormat.cs b/src/Kusto/generated/api/Support/EventGridDataFormat.cs index d9ac4f68b9c5..49c53c695167 100644 --- a/src/Kusto/generated/api/Support/EventGridDataFormat.cs +++ b/src/Kusto/generated/api/Support/EventGridDataFormat.cs @@ -9,6 +9,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support public partial struct EventGridDataFormat : System.IEquatable { + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat Apacheavro = @"APACHEAVRO"; + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat Avro = @"AVRO"; public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat Csv = @"CSV"; @@ -37,6 +39,8 @@ public partial struct EventGridDataFormat : public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat Txt = @"TXT"; + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat W3Clogfile = @"W3CLOGFILE"; + /// the value for an instance of the Enum. private string _value { get; set; } diff --git a/src/Kusto/generated/api/Support/EventHubDataFormat.Completer.cs b/src/Kusto/generated/api/Support/EventHubDataFormat.Completer.cs index ef57460d283c..3b47695523b0 100644 --- a/src/Kusto/generated/api/Support/EventHubDataFormat.Completer.cs +++ b/src/Kusto/generated/api/Support/EventHubDataFormat.Completer.cs @@ -82,6 +82,14 @@ public partial struct EventHubDataFormat : { yield return new global::System.Management.Automation.CompletionResult("ORC", "ORC", global::System.Management.Automation.CompletionResultType.ParameterValue, "ORC"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "APACHEAVRO".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("APACHEAVRO", "APACHEAVRO", global::System.Management.Automation.CompletionResultType.ParameterValue, "APACHEAVRO"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "W3CLOGFILE".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("W3CLOGFILE", "W3CLOGFILE", global::System.Management.Automation.CompletionResultType.ParameterValue, "W3CLOGFILE"); + } } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Support/EventHubDataFormat.cs b/src/Kusto/generated/api/Support/EventHubDataFormat.cs index f6356371cc4d..f4398e38ff83 100644 --- a/src/Kusto/generated/api/Support/EventHubDataFormat.cs +++ b/src/Kusto/generated/api/Support/EventHubDataFormat.cs @@ -9,6 +9,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support public partial struct EventHubDataFormat : System.IEquatable { + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat Apacheavro = @"APACHEAVRO"; + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat Avro = @"AVRO"; public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat Csv = @"CSV"; @@ -37,6 +39,8 @@ public partial struct EventHubDataFormat : public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat Txt = @"TXT"; + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventHubDataFormat W3Clogfile = @"W3CLOGFILE"; + /// the value for an instance of the Enum. private string _value { get; set; } diff --git a/src/Kusto/generated/api/Support/IotHubDataFormat.Completer.cs b/src/Kusto/generated/api/Support/IotHubDataFormat.Completer.cs index 7ee7f5e972d2..3d9a87374b86 100644 --- a/src/Kusto/generated/api/Support/IotHubDataFormat.Completer.cs +++ b/src/Kusto/generated/api/Support/IotHubDataFormat.Completer.cs @@ -82,6 +82,14 @@ public partial struct IotHubDataFormat : { yield return new global::System.Management.Automation.CompletionResult("ORC", "ORC", global::System.Management.Automation.CompletionResultType.ParameterValue, "ORC"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "APACHEAVRO".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("APACHEAVRO", "APACHEAVRO", global::System.Management.Automation.CompletionResultType.ParameterValue, "APACHEAVRO"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "W3CLOGFILE".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("W3CLOGFILE", "W3CLOGFILE", global::System.Management.Automation.CompletionResultType.ParameterValue, "W3CLOGFILE"); + } } } } \ No newline at end of file diff --git a/src/Kusto/generated/api/Support/IotHubDataFormat.cs b/src/Kusto/generated/api/Support/IotHubDataFormat.cs index fac3a79a3932..e1273a4df7ec 100644 --- a/src/Kusto/generated/api/Support/IotHubDataFormat.cs +++ b/src/Kusto/generated/api/Support/IotHubDataFormat.cs @@ -9,6 +9,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support public partial struct IotHubDataFormat : System.IEquatable { + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat Apacheavro = @"APACHEAVRO"; + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat Avro = @"AVRO"; public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat Csv = @"CSV"; @@ -37,6 +39,8 @@ public partial struct IotHubDataFormat : public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat Txt = @"TXT"; + public static Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.IotHubDataFormat W3Clogfile = @"W3CLOGFILE"; + /// the value for an instance of the Enum. private string _value { get; set; } diff --git a/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddExpanded.cs b/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddExpanded.cs index 95db8d23ac0f..00741e5e3901 100644 --- a/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddExpanded.cs +++ b/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddExpanded.cs @@ -84,10 +84,10 @@ public partial class AddAzKustoClusterLanguageExtension_AddExpanded : global::Sy public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList _languageExtensionsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList _languageExtensionsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList(); /// The list of language extension objects. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtensionsToAddBody { get => this._languageExtensionsToAddBody; set => this._languageExtensionsToAddBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtensionsToAddBody { get => this._languageExtensionsToAddBody; set => this._languageExtensionsToAddBody = value; } /// /// cancellation delegate. Stops the cmdlet when called. @@ -177,20 +177,20 @@ public partial class AddAzKustoClusterLanguageExtension_AddExpanded : global::Sy ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] Value { get => LanguageExtensionsToAddBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToAddBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Value { get => LanguageExtensionsToAddBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToAddBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -426,12 +426,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -448,7 +448,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, body=LanguageExtensionsToAddBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddViaIdentityExpanded.cs index 3638efc0c68a..22699bc78ccf 100644 --- a/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/AddAzKustoClusterLanguageExtension_AddViaIdentityExpanded.cs @@ -78,10 +78,10 @@ public partial class AddAzKustoClusterLanguageExtension_AddViaIdentityExpanded : public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList _languageExtensionsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList _languageExtensionsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList(); /// The list of language extension objects. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtensionsToAddBody { get => this._languageExtensionsToAddBody; set => this._languageExtensionsToAddBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtensionsToAddBody { get => this._languageExtensionsToAddBody; set => this._languageExtensionsToAddBody = value; } /// /// cancellation delegate. Stops the cmdlet when called. @@ -136,20 +136,20 @@ public partial class AddAzKustoClusterLanguageExtension_AddViaIdentityExpanded : ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] Value { get => LanguageExtensionsToAddBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToAddBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Value { get => LanguageExtensionsToAddBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToAddBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -404,12 +404,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -426,7 +426,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=LanguageExtensionsToAddBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddExpanded.cs b/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddExpanded.cs index 064fb1a5d0cb..34def966500a 100644 --- a/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddExpanded.cs +++ b/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_AddPrincipals=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/addPrincipals" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Add, @"AzKustoDatabasePrincipal_AddExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Add Database principals permissions.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class AddAzKustoDatabasePrincipal_AddExpanded : global::System.Management.Automation.PSCmdlet, @@ -69,10 +69,10 @@ public partial class AddAzKustoDatabasePrincipal_AddExpanded : global::System.Ma public string DatabaseName { get => this._databaseName; set => this._databaseName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest _databasePrincipalsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalListRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest _databasePrincipalsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalListRequest(); /// The list Kusto database principals operation request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest DatabasePrincipalsToAddBody { get => this._databasePrincipalsToAddBody; set => this._databasePrincipalsToAddBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest DatabasePrincipalsToAddBody { get => this._databasePrincipalsToAddBody; set => this._databasePrincipalsToAddBody = value; } /// /// The credentials, account, tenant, and subscription used for communication with Azure @@ -171,32 +171,32 @@ public partial class AddAzKustoDatabasePrincipal_AddExpanded : global::System.Ma ReadOnly = false, Description = @"The list of Kusto database principals.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get => DatabasePrincipalsToAddBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToAddBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get => DatabasePrincipalsToAddBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToAddBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// Intializes a new instance of the cmdlet class. @@ -368,12 +368,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -390,7 +390,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=DatabasePrincipalsToAddBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -408,12 +408,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddViaIdentityExpanded.cs index 4978fea35727..8be4c93f6c99 100644 --- a/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/AddAzKustoDatabasePrincipal_AddViaIdentityExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_AddPrincipals=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/addPrincipals" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Add, @"AzKustoDatabasePrincipal_AddViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Add Database principals permissions.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class AddAzKustoDatabasePrincipal_AddViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -41,10 +41,10 @@ public partial class AddAzKustoDatabasePrincipal_AddViaIdentityExpanded : global public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Kusto Client => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.ClientAPI; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest _databasePrincipalsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalListRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest _databasePrincipalsToAddBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalListRequest(); /// The list Kusto database principals operation request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest DatabasePrincipalsToAddBody { get => this._databasePrincipalsToAddBody; set => this._databasePrincipalsToAddBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest DatabasePrincipalsToAddBody { get => this._databasePrincipalsToAddBody; set => this._databasePrincipalsToAddBody = value; } /// /// The credentials, account, tenant, and subscription used for communication with Azure @@ -116,32 +116,32 @@ public partial class AddAzKustoDatabasePrincipal_AddViaIdentityExpanded : global ReadOnly = false, Description = @"The list of Kusto database principals.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get => DatabasePrincipalsToAddBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToAddBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get => DatabasePrincipalsToAddBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToAddBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// Intializes a new instance of the cmdlet class. @@ -337,12 +337,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -359,7 +359,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DatabasePrincipalsToAddBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -377,12 +377,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_Get.cs b/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_Get.cs index 24aa52bd9cd6..4ef886ea51ff 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_Get.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_Get.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] AttachedDatabaseConfigurations_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/AttachedDatabaseConfigurations/{attachedDatabaseConfigurationName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoAttachedDatabaseConfiguration_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns an attached database configuration.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoAttachedDatabaseConfiguration_Get : global::System.Management.Automation.PSCmdlet, @@ -162,24 +162,24 @@ public partial class GetAzKustoAttachedDatabaseConfiguration_Get : global::Syste /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -351,12 +351,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -373,7 +373,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -391,12 +391,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -408,7 +408,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_GetViaIdentity.cs b/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_GetViaIdentity.cs index 10a6e31913e1..910d6627aed4 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_GetViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_GetViaIdentity.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] AttachedDatabaseConfigurations_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/AttachedDatabaseConfigurations/{attachedDatabaseConfigurationName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoAttachedDatabaseConfiguration_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns an attached database configuration.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoAttachedDatabaseConfiguration_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -106,24 +106,24 @@ public partial class GetAzKustoAttachedDatabaseConfiguration_GetViaIdentity : gl /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -316,12 +316,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -338,7 +338,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -356,12 +356,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -373,7 +373,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_List.cs index 4ce2c735db07..5cf12c29a739 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoAttachedDatabaseConfiguration_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] AttachedDatabaseConfigurations_ListByCluster=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/attachedDatabaseConfigurations" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoAttachedDatabaseConfiguration_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns the list of attached database configurations of the given Kusto cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoAttachedDatabaseConfiguration_List : global::System.Management.Automation.PSCmdlet, @@ -149,24 +149,24 @@ public partial class GetAzKustoAttachedDatabaseConfiguration_List : global::Syst /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -338,12 +338,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -360,7 +360,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -378,12 +378,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoClusterFollowerDatabase_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoClusterFollowerDatabase_List.cs index 3f657e65b6b5..6b172eb96e4c 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoClusterFollowerDatabase_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoClusterFollowerDatabase_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_ListFollowerDatabases=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/listFollowerDatabases" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoClusterFollowerDatabase_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns a list of databases that are owned by this cluster and were followed by another cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoClusterFollowerDatabase_List : global::System.Management.Automation.PSCmdlet, @@ -149,24 +149,24 @@ public partial class GetAzKustoClusterFollowerDatabase_List : global::System.Man /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -341,12 +341,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -363,7 +363,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -381,12 +381,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoClusterLanguageExtension_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoClusterLanguageExtension_List.cs index ae32f603756b..e3c3956c5a46 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoClusterLanguageExtension_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoClusterLanguageExtension_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_ListLanguageExtensions=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/listLanguageExtensions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoClusterLanguageExtension_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns a list of language extensions that can run within KQL queries.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoClusterLanguageExtension_List : global::System.Management.Automation.PSCmdlet, @@ -147,24 +147,24 @@ public partial class GetAzKustoClusterLanguageExtension_List : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -339,12 +339,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -361,7 +361,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -379,12 +379,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_Get.cs b/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_Get.cs index aba0af05f1e7..9cb96bb885d5 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_Get.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_Get.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] ClusterPrincipalAssignments_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/PrincipalAssignments/{principalAssignmentName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoClusterPrincipalAssignment_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Gets a Kusto cluster principalAssignment.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoClusterPrincipalAssignment_Get : global::System.Management.Automation.PSCmdlet, @@ -161,24 +161,24 @@ public partial class GetAzKustoClusterPrincipalAssignment_Get : global::System.M /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -350,12 +350,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -372,7 +372,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, PrincipalAssignmentName=PrincipalAssignmentName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -390,12 +390,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -407,7 +407,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_GetViaIdentity.cs b/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_GetViaIdentity.cs index 3e187478a67c..34a311f9b641 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_GetViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_GetViaIdentity.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] ClusterPrincipalAssignments_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/PrincipalAssignments/{principalAssignmentName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoClusterPrincipalAssignment_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Gets a Kusto cluster principalAssignment.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoClusterPrincipalAssignment_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -106,24 +106,24 @@ public partial class GetAzKustoClusterPrincipalAssignment_GetViaIdentity : globa /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -316,12 +316,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -338,7 +338,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -356,12 +356,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -373,7 +373,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_List.cs index 48da2d5525fd..f2df14429821 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoClusterPrincipalAssignment_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] ClusterPrincipalAssignments_List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/principalAssignments" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoClusterPrincipalAssignment_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Lists all Kusto cluster principalAssignments.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoClusterPrincipalAssignment_List : global::System.Management.Automation.PSCmdlet, @@ -147,24 +147,24 @@ public partial class GetAzKustoClusterPrincipalAssignment_List : global::System. /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -336,12 +336,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -358,7 +358,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -376,12 +376,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List.cs index e10190c45431..9260078fdc50 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_ListSkus=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.Kusto/skus" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoClusterSku_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Lists eligible SKUs for Kusto resource provider.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoClusterSku_List : global::System.Management.Automation.PSCmdlet, @@ -119,24 +119,24 @@ public partial class GetAzKustoClusterSku_List : global::System.Management.Autom /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -308,12 +308,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -330,7 +330,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -348,12 +348,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List1.cs b/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List1.cs index b4ef54fc2963..2ff37d9c30f9 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List1.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoClusterSku_List1.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_ListSkusByResource=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/skus" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoClusterSku_List1")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns the SKUs available for the provided resource.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoClusterSku_List1 : global::System.Management.Automation.PSCmdlet, @@ -147,24 +147,24 @@ public partial class GetAzKustoClusterSku_List1 : global::System.Management.Auto /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -336,12 +336,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -358,7 +358,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -376,12 +376,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoCluster_Get.cs b/src/Kusto/generated/cmdlets/GetAzKustoCluster_Get.cs index 1872ab14e754..0703ce3d0bbe 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoCluster_Get.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoCluster_Get.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoCluster_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Gets a Kusto cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoCluster_Get : global::System.Management.Automation.PSCmdlet, @@ -148,24 +148,24 @@ public partial class GetAzKustoCluster_Get : global::System.Management.Automatio /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -337,12 +337,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -359,7 +359,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -377,12 +377,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -394,7 +394,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoCluster_GetViaIdentity.cs b/src/Kusto/generated/cmdlets/GetAzKustoCluster_GetViaIdentity.cs index 48fdee168b9b..8ca1e7340364 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoCluster_GetViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoCluster_GetViaIdentity.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoCluster_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Gets a Kusto cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoCluster_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -106,24 +106,24 @@ public partial class GetAzKustoCluster_GetViaIdentity : global::System.Managemen /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -312,12 +312,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -334,7 +334,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -352,12 +352,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -369,7 +369,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoCluster_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoCluster_List.cs index d7a2b93e2d2c..5bf7abd213be 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoCluster_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoCluster_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoCluster_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Lists all Kusto clusters within a resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoCluster_List : global::System.Management.Automation.PSCmdlet, @@ -133,24 +133,24 @@ public partial class GetAzKustoCluster_List : global::System.Management.Automati /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -322,12 +322,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -344,7 +344,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -362,12 +362,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoCluster_List1.cs b/src/Kusto/generated/cmdlets/GetAzKustoCluster_List1.cs index d680a3917a83..ebe5d66b22b1 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoCluster_List1.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoCluster_List1.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_List=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.Kusto/clusters" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoCluster_List1")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Lists all Kusto clusters within a subscription.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoCluster_List1 : global::System.Management.Automation.PSCmdlet, @@ -119,24 +119,24 @@ public partial class GetAzKustoCluster_List1 : global::System.Management.Automat /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -308,12 +308,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -330,7 +330,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -348,12 +348,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_Get.cs b/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_Get.cs index 086d37e91d8c..e2647822a6f9 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_Get.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_Get.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DataConnections_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/DataConnections/{dataConnectionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDataConnection_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDataConnection_Get : global::System.Management.Automation.PSCmdlet, @@ -176,24 +176,24 @@ public partial class GetAzKustoDataConnection_Get : global::System.Management.Au /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -365,12 +365,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -387,7 +387,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -405,12 +405,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -422,7 +422,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_GetViaIdentity.cs b/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_GetViaIdentity.cs index 9f438f7a33ea..d323727a39b0 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_GetViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_GetViaIdentity.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DataConnections_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/DataConnections/{dataConnectionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDataConnection_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDataConnection_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -106,24 +106,24 @@ public partial class GetAzKustoDataConnection_GetViaIdentity : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -320,12 +320,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -342,7 +342,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -360,12 +360,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -377,7 +377,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_List.cs index 6aef1833817b..283247bbcdd4 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDataConnection_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DataConnections_ListByDatabase=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/dataConnections" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDataConnection_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns the list of data connections of the given Kusto database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDataConnection_List : global::System.Management.Automation.PSCmdlet, @@ -161,24 +161,24 @@ public partial class GetAzKustoDataConnection_List : global::System.Management.A /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -350,12 +350,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -372,7 +372,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -390,12 +390,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_Get.cs b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_Get.cs index 3a7dcc4c68c6..a2bac50b5c9f 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_Get.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_Get.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DatabasePrincipalAssignments_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/PrincipalAssignments/{principalAssignmentName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDatabasePrincipalAssignment_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Gets a Kusto cluster database principalAssignment.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDatabasePrincipalAssignment_Get : global::System.Management.Automation.PSCmdlet, @@ -175,24 +175,24 @@ public partial class GetAzKustoDatabasePrincipalAssignment_Get : global::System. /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -364,12 +364,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -386,7 +386,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, PrincipalAssignmentName=PrincipalAssignmentName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -404,12 +404,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -421,7 +421,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_GetViaIdentity.cs b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_GetViaIdentity.cs index e4f0297b0385..eabb0a42bfaf 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_GetViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_GetViaIdentity.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DatabasePrincipalAssignments_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/PrincipalAssignments/{principalAssignmentName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDatabasePrincipalAssignment_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Gets a Kusto cluster database principalAssignment.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDatabasePrincipalAssignment_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -106,24 +106,24 @@ public partial class GetAzKustoDatabasePrincipalAssignment_GetViaIdentity : glob /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -320,12 +320,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -342,7 +342,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -360,12 +360,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -377,7 +377,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_List.cs index af4859967040..f4d0a683dada 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipalAssignment_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DatabasePrincipalAssignments_List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/principalAssignments" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDatabasePrincipalAssignment_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Lists all Kusto cluster database principalAssignments.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDatabasePrincipalAssignment_List : global::System.Management.Automation.PSCmdlet, @@ -161,24 +161,24 @@ public partial class GetAzKustoDatabasePrincipalAssignment_List : global::System /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -350,12 +350,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -372,7 +372,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -390,12 +390,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipal_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipal_List.cs index ba9fb8bd058f..69f0c6774114 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipal_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDatabasePrincipal_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_ListPrincipals=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/listPrincipals" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDatabasePrincipal_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns a list of database principals of the given Kusto cluster and database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDatabasePrincipal_List : global::System.Management.Automation.PSCmdlet, @@ -161,24 +161,24 @@ public partial class GetAzKustoDatabasePrincipal_List : global::System.Managemen /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -353,12 +353,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -375,7 +375,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -393,12 +393,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDatabase_Get.cs b/src/Kusto/generated/cmdlets/GetAzKustoDatabase_Get.cs index 3b0466802479..5ae8d4794ada 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDatabase_Get.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDatabase_Get.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDatabase_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDatabase_Get : global::System.Management.Automation.PSCmdlet, @@ -162,24 +162,24 @@ public partial class GetAzKustoDatabase_Get : global::System.Management.Automati /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -351,12 +351,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -373,7 +373,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -391,12 +391,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -408,7 +408,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDatabase_GetViaIdentity.cs b/src/Kusto/generated/cmdlets/GetAzKustoDatabase_GetViaIdentity.cs index ac6daaaa9ac6..496731ebb6da 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDatabase_GetViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDatabase_GetViaIdentity.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDatabase_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDatabase_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -106,24 +106,24 @@ public partial class GetAzKustoDatabase_GetViaIdentity : global::System.Manageme /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -316,12 +316,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -338,7 +338,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -356,12 +356,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -373,7 +373,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/GetAzKustoDatabase_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoDatabase_List.cs index 452a6aa1566e..ad6f31e1fceb 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoDatabase_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoDatabase_List.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_ListByCluster=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/databases" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoDatabase_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Returns the list of databases of the given Kusto cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoDatabase_List : global::System.Management.Automation.PSCmdlet, @@ -147,24 +147,24 @@ public partial class GetAzKustoDatabase_List : global::System.Management.Automat /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -336,12 +336,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -358,7 +358,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -376,12 +376,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/GetAzKustoOperation_List.cs b/src/Kusto/generated/cmdlets/GetAzKustoOperation_List.cs index fe89fa380d09..420d9f5bb096 100644 --- a/src/Kusto/generated/cmdlets/GetAzKustoOperation_List.cs +++ b/src/Kusto/generated/cmdlets/GetAzKustoOperation_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzKustoOperation_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Lists available operations for the Microsoft.Kusto provider.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class GetAzKustoOperation_List : global::System.Management.Automation.PSCmdlet, @@ -99,24 +99,24 @@ public partial class GetAzKustoOperation_List : global::System.Management.Automa /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -285,12 +285,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -307,7 +307,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -325,12 +325,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_Data.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_Data.cs index 5b49930d5e56..5433b2e5289c 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_Data.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_Data.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzKustoDataConnectionValidation_Data", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the data connection parameters are valid.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class InvokeAzKustoDataConnectionValidation_Data : global::System.Management.Automation.PSCmdlet, @@ -33,6 +33,11 @@ public partial class InvokeAzKustoDataConnectionValidation_Data : global::System /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] @@ -101,8 +106,16 @@ public partial class InvokeAzKustoDataConnectionValidation_Data : global::System /// cancellation token. global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation _parameter; /// Class representing an data connection validation. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing an data connection validation.", ValueFromPipeline = true)] @@ -111,8 +124,8 @@ public partial class InvokeAzKustoDataConnectionValidation_Data : global::System ReadOnly = false, Description = @"Class representing an data connection validation.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -170,17 +183,29 @@ public partial class InvokeAzKustoDataConnectionValidation_Data : global::System [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Path)] public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -195,6 +220,31 @@ protected override void BeginProcessing() ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of InvokeAzKustoDataConnectionValidation_Data + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets.InvokeAzKustoDataConnectionValidation_Data Clone() + { + var clone = new InvokeAzKustoDataConnectionValidation_Data(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ResourceGroupName = this.ResourceGroupName; + clone.ClusterName = this.ClusterName; + clone.DatabaseName = this.DatabaseName; + clone.SubscriptionId = this.SubscriptionId; + clone.Parameter = this.Parameter; + return clone; + } + /// Performs clean-up after the command execution protected override void EndProcessing() { @@ -239,8 +289,8 @@ public InvokeAzKustoDataConnectionValidation_Data() } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Information: { - var data = messageData(); - WriteInformation(data, new[] { data.Message }); + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); return ; } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Debug: @@ -253,6 +303,24 @@ public InvokeAzKustoDataConnectionValidation_Data() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } } await Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) @@ -273,9 +341,21 @@ protected override void ProcessRecord() // work if (ShouldProcess($"Call remote 'DataConnectionsDataConnectionValidation' operation")) { - using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) { - asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + } } } } @@ -324,7 +404,7 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - await this.Client.DataConnectionsDataConnectionValidation(ResourceGroupName, ClusterName, DatabaseName, SubscriptionId, Parameter, onOk, this, Pipeline); + await this.Client.DataConnectionsDataConnectionValidation(ResourceGroupName, ClusterName, DatabaseName, SubscriptionId, Parameter, onOk, onDefault, this, Pipeline); await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.UndeclaredResponseException urexception) @@ -348,14 +428,56 @@ protected override void StopProcessing() base.StopProcessing(); } + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataExpanded.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataExpanded.cs index 71218352bc92..25da2475857b 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataExpanded.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzKustoDataConnectionValidation_DataExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the data connection parameters are valid.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class InvokeAzKustoDataConnectionValidation_DataExpanded : global::System.Management.Automation.PSCmdlet, @@ -33,6 +33,11 @@ public partial class InvokeAzKustoDataConnectionValidation_DataExpanded : global /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] @@ -135,11 +140,19 @@ public partial class InvokeAzKustoDataConnectionValidation_DataExpanded : global /// cancellation token. global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation(); /// Class representing an data connection validation. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -197,17 +210,29 @@ public partial class InvokeAzKustoDataConnectionValidation_DataExpanded : global [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Path)] public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -222,6 +247,31 @@ protected override void BeginProcessing() ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of InvokeAzKustoDataConnectionValidation_DataExpanded + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets.InvokeAzKustoDataConnectionValidation_DataExpanded Clone() + { + var clone = new InvokeAzKustoDataConnectionValidation_DataExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ParametersBody = this.ParametersBody; + clone.ResourceGroupName = this.ResourceGroupName; + clone.ClusterName = this.ClusterName; + clone.DatabaseName = this.DatabaseName; + clone.SubscriptionId = this.SubscriptionId; + return clone; + } + /// Performs clean-up after the command execution protected override void EndProcessing() { @@ -266,8 +316,8 @@ public InvokeAzKustoDataConnectionValidation_DataExpanded() } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Information: { - var data = messageData(); - WriteInformation(data, new[] { data.Message }); + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); return ; } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Debug: @@ -280,6 +330,24 @@ public InvokeAzKustoDataConnectionValidation_DataExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } } await Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) @@ -300,9 +368,21 @@ protected override void ProcessRecord() // work if (ShouldProcess($"Call remote 'DataConnectionsDataConnectionValidation' operation")) { - using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) { - asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + } } } } @@ -351,7 +431,7 @@ protected override void ProcessRecord() try { await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } - await this.Client.DataConnectionsDataConnectionValidation(ResourceGroupName, ClusterName, DatabaseName, SubscriptionId, ParametersBody, onOk, this, Pipeline); + await this.Client.DataConnectionsDataConnectionValidation(ResourceGroupName, ClusterName, DatabaseName, SubscriptionId, ParametersBody, onOk, onDefault, this, Pipeline); await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } catch (Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.UndeclaredResponseException urexception) @@ -375,14 +455,56 @@ protected override void StopProcessing() base.StopProcessing(); } + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=ParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=ParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentity.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentity.cs index e9f2ae18e8b8..b839d35be337 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzKustoDataConnectionValidation_DataViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the data connection parameters are valid.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -33,6 +33,11 @@ public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentity : glo /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] @@ -81,8 +86,16 @@ public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentity : glo /// cancellation token. global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation _parameter; /// Class representing an data connection validation. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing an data connection validation.", ValueFromPipeline = true)] @@ -91,8 +104,8 @@ public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentity : glo ReadOnly = false, Description = @"Class representing an data connection validation.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -115,17 +128,29 @@ public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentity : glo [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -140,6 +165,27 @@ protected override void BeginProcessing() ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of InvokeAzKustoDataConnectionValidation_DataViaIdentity + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets.InvokeAzKustoDataConnectionValidation_DataViaIdentity Clone() + { + var clone = new InvokeAzKustoDataConnectionValidation_DataViaIdentity(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.Parameter = this.Parameter; + return clone; + } + /// Performs clean-up after the command execution protected override void EndProcessing() { @@ -184,8 +230,8 @@ public InvokeAzKustoDataConnectionValidation_DataViaIdentity() } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Information: { - var data = messageData(); - WriteInformation(data, new[] { data.Message }); + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); return ; } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Debug: @@ -198,6 +244,24 @@ public InvokeAzKustoDataConnectionValidation_DataViaIdentity() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } } await Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) @@ -218,9 +282,21 @@ protected override void ProcessRecord() // work if (ShouldProcess($"Call remote 'DataConnectionsDataConnectionValidation' operation")) { - using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) { - asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + } } } } @@ -271,7 +347,7 @@ protected override void ProcessRecord() await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } if (InputObject?.Id != null) { - await this.Client.DataConnectionsDataConnectionValidationViaIdentity(InputObject.Id, Parameter, onOk, this, Pipeline); + await this.Client.DataConnectionsDataConnectionValidationViaIdentity(InputObject.Id, Parameter, onOk, onDefault, this, Pipeline); } else { @@ -292,7 +368,7 @@ protected override void ProcessRecord() { ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); } - await this.Client.DataConnectionsDataConnectionValidation(InputObject.ResourceGroupName ?? null, InputObject.ClusterName ?? null, InputObject.DatabaseName ?? null, InputObject.SubscriptionId ?? null, Parameter, onOk, this, Pipeline); + await this.Client.DataConnectionsDataConnectionValidation(InputObject.ResourceGroupName ?? null, InputObject.ClusterName ?? null, InputObject.DatabaseName ?? null, InputObject.SubscriptionId ?? null, Parameter, onOk, onDefault, this, Pipeline); } await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } @@ -317,14 +393,56 @@ protected override void StopProcessing() base.StopProcessing(); } + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded.cs index 039b9ea7349e..2ec0099aff0b 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Invoke, @"AzKustoDataConnectionValidation_DataViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the data connection parameters are valid.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -33,6 +33,11 @@ public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentityExpand /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] @@ -115,11 +120,19 @@ public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentityExpand /// cancellation token. global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation(); /// Class representing an data connection validation. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -142,17 +155,29 @@ public partial class InvokeAzKustoDataConnectionValidation_DataViaIdentityExpand [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -167,6 +192,29 @@ protected override void BeginProcessing() ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// + /// a duplicate instance of InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded + /// + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets.InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded Clone() + { + var clone = new InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone.ParametersBody = this.ParametersBody; + return clone; + } + /// Performs clean-up after the command execution protected override void EndProcessing() { @@ -211,8 +259,8 @@ public InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded() } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Information: { - var data = messageData(); - WriteInformation(data, new[] { data.Message }); + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); return ; } case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.Debug: @@ -225,6 +273,24 @@ public InvokeAzKustoDataConnectionValidation_DataViaIdentityExpanded() WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); return ; } + case Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } } await Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); if (token.IsCancellationRequested) @@ -245,9 +311,21 @@ protected override void ProcessRecord() // work if (ShouldProcess($"Call remote 'DataConnectionsDataConnectionValidation' operation")) { - using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else { - asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token); + } } } } @@ -298,7 +376,7 @@ protected override void ProcessRecord() await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } if (InputObject?.Id != null) { - await this.Client.DataConnectionsDataConnectionValidationViaIdentity(InputObject.Id, ParametersBody, onOk, this, Pipeline); + await this.Client.DataConnectionsDataConnectionValidationViaIdentity(InputObject.Id, ParametersBody, onOk, onDefault, this, Pipeline); } else { @@ -319,7 +397,7 @@ protected override void ProcessRecord() { ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.SubscriptionId"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); } - await this.Client.DataConnectionsDataConnectionValidation(InputObject.ResourceGroupName ?? null, InputObject.ClusterName ?? null, InputObject.DatabaseName ?? null, InputObject.SubscriptionId ?? null, ParametersBody, onOk, this, Pipeline); + await this.Client.DataConnectionsDataConnectionValidation(InputObject.ResourceGroupName ?? null, InputObject.ClusterName ?? null, InputObject.DatabaseName ?? null, InputObject.SubscriptionId ?? null, ParametersBody, onOk, onDefault, this, Pipeline); } await ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } } @@ -344,14 +422,56 @@ protected override void StopProcessing() base.StopProcessing(); } + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachExpanded.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachExpanded.cs index be7066ed7c30..ec78013b9f75 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachExpanded.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachExpanded.cs @@ -91,10 +91,10 @@ public partial class InvokeAzKustoDetachClusterFollowerDatabase_DetachExpanded : public global::System.Management.Automation.PSObject DefaultProfile { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition _followerDatabaseToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseDefinition(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition _followerDatabaseToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseDefinition(); /// A class representing follower database request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition FollowerDatabaseToRemoveBody { get => this._followerDatabaseToRemoveBody; set => this._followerDatabaseToRemoveBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition FollowerDatabaseToRemoveBody { get => this._followerDatabaseToRemoveBody; set => this._followerDatabaseToRemoveBody = value; } /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] @@ -195,12 +195,12 @@ public partial class InvokeAzKustoDetachClusterFollowerDatabase_DetachExpanded : /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -438,12 +438,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -460,7 +460,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId, body=FollowerDatabaseToRemoveBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded.cs index 7108e52fb017..e27fa077fe0d 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded.cs @@ -77,10 +77,10 @@ public partial class InvokeAzKustoDetachClusterFollowerDatabase_DetachViaIdentit public global::System.Management.Automation.PSObject DefaultProfile { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition _followerDatabaseToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.FollowerDatabaseDefinition(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition _followerDatabaseToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.FollowerDatabaseDefinition(); /// A class representing follower database request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition FollowerDatabaseToRemoveBody { get => this._followerDatabaseToRemoveBody; set => this._followerDatabaseToRemoveBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition FollowerDatabaseToRemoveBody { get => this._followerDatabaseToRemoveBody; set => this._followerDatabaseToRemoveBody = value; } /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] @@ -154,12 +154,12 @@ public partial class InvokeAzKustoDetachClusterFollowerDatabase_DetachViaIdentit /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -415,12 +415,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -437,7 +437,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=FollowerDatabaseToRemoveBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_Diagnose.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_Diagnose.cs index 5813af559be1..3f36081cefb3 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_Diagnose.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_Diagnose.cs @@ -162,24 +162,24 @@ public partial class InvokeAzKustoDiagnoseClusterVirtualNetwork_Diagnose : globa /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -404,12 +404,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -426,7 +426,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -444,12 +444,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity.cs b/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity.cs index 49e0e73952a4..e07fe03dcb84 100644 --- a/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/InvokeAzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity.cs @@ -121,24 +121,24 @@ public partial class InvokeAzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdent /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -383,12 +383,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -405,7 +405,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -423,12 +423,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/NewAzKustoAttachedDatabaseConfiguration_CreateExpanded.cs b/src/Kusto/generated/cmdlets/NewAzKustoAttachedDatabaseConfiguration_CreateExpanded.cs index b40727f330a8..b1c16904a2b0 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoAttachedDatabaseConfiguration_CreateExpanded.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoAttachedDatabaseConfiguration_CreateExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] AttachedDatabaseConfigurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/AttachedDatabaseConfigurations/{attachedDatabaseConfigurationName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoAttachedDatabaseConfiguration_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Creates or updates an attached database configuration.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoAttachedDatabaseConfiguration_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -164,10 +164,10 @@ public partial class NewAzKustoAttachedDatabaseConfiguration_CreateExpanded : gl public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.AttachedDatabaseConfiguration(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.AttachedDatabaseConfiguration(); /// Class representing an attached database configuration. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -230,24 +230,24 @@ public partial class NewAzKustoAttachedDatabaseConfiguration_CreateExpanded : gl /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -474,12 +474,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -496,7 +496,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -514,12 +514,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -531,7 +531,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/NewAzKustoClusterPrincipalAssignment_CreateExpanded.cs b/src/Kusto/generated/cmdlets/NewAzKustoClusterPrincipalAssignment_CreateExpanded.cs index 40d3b923ab96..945975d06553 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoClusterPrincipalAssignment_CreateExpanded.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoClusterPrincipalAssignment_CreateExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] ClusterPrincipalAssignments_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/PrincipalAssignments/{principalAssignmentName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoClusterPrincipalAssignment_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Create a Kusto cluster principalAssignment.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoClusterPrincipalAssignment_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -100,10 +100,10 @@ public partial class NewAzKustoClusterPrincipalAssignment_CreateExpanded : globa public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignment(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignment(); /// Class representing a cluster principal assignment. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -228,24 +228,24 @@ public partial class NewAzKustoClusterPrincipalAssignment_CreateExpanded : globa /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -472,12 +472,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -494,7 +494,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, PrincipalAssignmentName=PrincipalAssignmentName, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -512,12 +512,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -529,7 +529,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/NewAzKustoCluster_CreateExpanded.cs b/src/Kusto/generated/cmdlets/NewAzKustoCluster_CreateExpanded.cs index 861bf38380f9..8ef4ba2ecb5e 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoCluster_CreateExpanded.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoCluster_CreateExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoCluster_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Create or update a Kusto cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoCluster_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -65,6 +65,17 @@ public partial class NewAzKustoCluster_CreateExpanded : global::System.Managemen PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] public global::System.Management.Automation.SwitchParameter EnableDiskEncryption { get => ParametersBody.EnableDiskEncryption ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.EnableDiskEncryption = value; } + /// A boolean value that indicates if double encryption is enabled. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A boolean value that indicates if double encryption is enabled.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A boolean value that indicates if double encryption is enabled.", + SerializedName = @"enableDoubleEncryption", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter EnableDoubleEncryption { get => ParametersBody.EnableDoubleEncryption ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.EnableDoubleEncryption = value; } + /// A boolean value that indicates if the purge operations are enabled. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A boolean value that indicates if the purge operations are enabled.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Body)] @@ -123,8 +134,8 @@ public partial class NewAzKustoCluster_CreateExpanded : global::System.Managemen ReadOnly = false, Description = @"The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ParametersBody.IdentityUserAssignedIdentity ?? null /* object */; set => ParametersBody.IdentityUserAssignedIdentity = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ParametersBody.IdentityUserAssignedIdentity ?? null /* object */; set => ParametersBody.IdentityUserAssignedIdentity = value; } /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } @@ -171,8 +182,8 @@ public partial class NewAzKustoCluster_CreateExpanded : global::System.Managemen ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get => ParametersBody.LanguageExtensionValue ?? null /* arrayOf */; set => ParametersBody.LanguageExtensionValue = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get => ParametersBody.LanguageExtensionValue ?? null /* arrayOf */; set => ParametersBody.LanguageExtensionValue = value; } /// The geo-location where the resource lives [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The geo-location where the resource lives")] @@ -263,10 +274,10 @@ public partial class NewAzKustoCluster_CreateExpanded : global::System.Managemen public int OptimizedAutoscaleVersion { get => ParametersBody.OptimizedAutoscaleVersion; set => ParametersBody.OptimizedAutoscaleVersion = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Cluster(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Cluster(); /// Class representing a Kusto cluster. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -380,8 +391,8 @@ public partial class NewAzKustoCluster_CreateExpanded : global::System.Managemen ReadOnly = false, Description = @"The cluster's external tenants.", SerializedName = @"trustedExternalTenants", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get => ParametersBody.TrustedExternalTenant ?? null /* arrayOf */; set => ParametersBody.TrustedExternalTenant = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get => ParametersBody.TrustedExternalTenant ?? null /* arrayOf */; set => ParametersBody.TrustedExternalTenant = value; } /// Data management's service public IP address resource id. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Data management's service public IP address resource id.")] @@ -433,24 +444,24 @@ public partial class NewAzKustoCluster_CreateExpanded : global::System.Managemen /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -676,12 +687,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -698,7 +709,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -716,12 +727,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -733,7 +744,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_Create.cs b/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_Create.cs index b42e67e0e08f..0e26ebad6829 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_Create.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_Create.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoDataConnection_Create", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Creates or updates a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoDataConnection_Create : global::System.Management.Automation.PSCmdlet, @@ -130,7 +130,7 @@ public partial class NewAzKustoDataConnection_Create : global::System.Management public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection _parameter; /// Class representing an data connection. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing an data connection.", ValueFromPipeline = true)] @@ -139,8 +139,8 @@ public partial class NewAzKustoDataConnection_Create : global::System.Management ReadOnly = false, Description = @"Class representing an data connection.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -203,24 +203,24 @@ public partial class NewAzKustoDataConnection_Create : global::System.Management /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -448,12 +448,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -470,7 +470,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, Name=Name, SubscriptionId=SubscriptionId, body=Parameter }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -488,12 +488,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -505,7 +505,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_CreateExpanded.cs b/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_CreateExpanded.cs index d8feaf27d223..c0bbb0a27a4e 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_CreateExpanded.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoDataConnection_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoDataConnection_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Creates or updates a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoDataConnection_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -153,10 +153,10 @@ public partial class NewAzKustoDataConnection_CreateExpanded : global::System.Ma public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(); /// Class representing an data connection. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -219,24 +219,24 @@ public partial class NewAzKustoDataConnection_CreateExpanded : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -464,12 +464,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -486,7 +486,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -504,12 +504,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -521,7 +521,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/NewAzKustoDatabasePrincipalAssignment_CreateExpanded.cs b/src/Kusto/generated/cmdlets/NewAzKustoDatabasePrincipalAssignment_CreateExpanded.cs index 982f0e3772a6..8d725f327bd3 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoDatabasePrincipalAssignment_CreateExpanded.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoDatabasePrincipalAssignment_CreateExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DatabasePrincipalAssignments_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/PrincipalAssignments/{principalAssignmentName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoDatabasePrincipalAssignment_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Creates a Kusto cluster database principalAssignment.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoDatabasePrincipalAssignment_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -114,10 +114,10 @@ public partial class NewAzKustoDatabasePrincipalAssignment_CreateExpanded : glob public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignment(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignment(); /// Class representing a database principal assignment. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -242,24 +242,24 @@ public partial class NewAzKustoDatabasePrincipalAssignment_CreateExpanded : glob /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -487,12 +487,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -509,7 +509,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, PrincipalAssignmentName=PrincipalAssignmentName, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -527,12 +527,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -544,7 +544,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/NewAzKustoDatabase_Create.cs b/src/Kusto/generated/cmdlets/NewAzKustoDatabase_Create.cs index 279db4eceaa5..6fc2dea84480 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoDatabase_Create.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoDatabase_Create.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoDatabase_Create", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Creates or updates a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoDatabase_Create : global::System.Management.Automation.PSCmdlet, @@ -116,7 +116,7 @@ public partial class NewAzKustoDatabase_Create : global::System.Management.Autom public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase _parameter; /// Class representing a Kusto database. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing a Kusto database.", ValueFromPipeline = true)] @@ -125,8 +125,8 @@ public partial class NewAzKustoDatabase_Create : global::System.Management.Autom ReadOnly = false, Description = @"Class representing a Kusto database.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -189,24 +189,24 @@ public partial class NewAzKustoDatabase_Create : global::System.Management.Autom /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -433,12 +433,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -455,7 +455,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId, body=Parameter }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -473,12 +473,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -490,7 +490,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/NewAzKustoDatabase_CreateExpanded.cs b/src/Kusto/generated/cmdlets/NewAzKustoDatabase_CreateExpanded.cs index ada598bd83a9..1b1c99894a87 100644 --- a/src/Kusto/generated/cmdlets/NewAzKustoDatabase_CreateExpanded.cs +++ b/src/Kusto/generated/cmdlets/NewAzKustoDatabase_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzKustoDatabase_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Creates or updates a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class NewAzKustoDatabase_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -139,10 +139,10 @@ public partial class NewAzKustoDatabase_CreateExpanded : global::System.Manageme public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database(); /// Class representing a Kusto database. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -205,24 +205,24 @@ public partial class NewAzKustoDatabase_CreateExpanded : global::System.Manageme /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -449,12 +449,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -471,7 +471,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -489,12 +489,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -506,7 +506,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_Delete.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_Delete.cs index 47bd5e6d425e..de37191dd99e 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_Delete.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_Delete.cs @@ -182,12 +182,12 @@ public partial class RemoveAzKustoAttachedDatabaseConfiguration_Delete : global: /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -433,12 +433,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -455,7 +455,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_DeleteViaIdentity.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_DeleteViaIdentity.cs index 6929e008fa98..95e54bf87911 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_DeleteViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoAttachedDatabaseConfiguration_DeleteViaIdentity.cs @@ -126,12 +126,12 @@ public partial class RemoveAzKustoAttachedDatabaseConfiguration_DeleteViaIdentit /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -399,12 +399,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -421,7 +421,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveExpanded.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveExpanded.cs index 7b65ca33d48f..ade47315359b 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveExpanded.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveExpanded.cs @@ -84,10 +84,10 @@ public partial class RemoveAzKustoClusterLanguageExtension_RemoveExpanded : glob public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList _languageExtensionsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList _languageExtensionsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList(); /// The list of language extension objects. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtensionsToRemoveBody { get => this._languageExtensionsToRemoveBody; set => this._languageExtensionsToRemoveBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtensionsToRemoveBody { get => this._languageExtensionsToRemoveBody; set => this._languageExtensionsToRemoveBody = value; } /// /// cancellation delegate. Stops the cmdlet when called. @@ -177,20 +177,20 @@ public partial class RemoveAzKustoClusterLanguageExtension_RemoveExpanded : glob ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] Value { get => LanguageExtensionsToRemoveBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToRemoveBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Value { get => LanguageExtensionsToRemoveBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToRemoveBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -426,12 +426,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -448,7 +448,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, body=LanguageExtensionsToRemoveBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveViaIdentityExpanded.cs index 77ae181a44ca..1f99f00841dc 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterLanguageExtension_RemoveViaIdentityExpanded.cs @@ -78,10 +78,10 @@ public partial class RemoveAzKustoClusterLanguageExtension_RemoveViaIdentityExpa public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList _languageExtensionsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.LanguageExtensionsList(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList _languageExtensionsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.LanguageExtensionsList(); /// The list of language extension objects. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtensionsList LanguageExtensionsToRemoveBody { get => this._languageExtensionsToRemoveBody; set => this._languageExtensionsToRemoveBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtensionsList LanguageExtensionsToRemoveBody { get => this._languageExtensionsToRemoveBody; set => this._languageExtensionsToRemoveBody = value; } /// /// cancellation delegate. Stops the cmdlet when called. @@ -136,20 +136,20 @@ public partial class RemoveAzKustoClusterLanguageExtension_RemoveViaIdentityExpa ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] Value { get => LanguageExtensionsToRemoveBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToRemoveBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Value { get => LanguageExtensionsToRemoveBody.Value ?? null /* arrayOf */; set => LanguageExtensionsToRemoveBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -405,12 +405,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -427,7 +427,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=LanguageExtensionsToRemoveBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_Delete.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_Delete.cs index 09938571b411..1637d74234d7 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_Delete.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_Delete.cs @@ -181,12 +181,12 @@ public partial class RemoveAzKustoClusterPrincipalAssignment_Delete : global::Sy /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -432,12 +432,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -454,7 +454,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, PrincipalAssignmentName=PrincipalAssignmentName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_DeleteViaIdentity.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_DeleteViaIdentity.cs index 1a62ef58f765..f7b157726e1f 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_DeleteViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoClusterPrincipalAssignment_DeleteViaIdentity.cs @@ -126,12 +126,12 @@ public partial class RemoveAzKustoClusterPrincipalAssignment_DeleteViaIdentity : /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -399,12 +399,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -421,7 +421,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_Delete.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_Delete.cs index 4ce00d6f79ad..3d67cf8b7a0d 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_Delete.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_Delete.cs @@ -168,12 +168,12 @@ public partial class RemoveAzKustoCluster_Delete : global::System.Management.Aut /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -418,12 +418,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -440,7 +440,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_DeleteViaIdentity.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_DeleteViaIdentity.cs index 5732d1152465..bea17e3442b7 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_DeleteViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoCluster_DeleteViaIdentity.cs @@ -126,12 +126,12 @@ public partial class RemoveAzKustoCluster_DeleteViaIdentity : global::System.Man /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -393,12 +393,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -415,7 +415,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_Delete.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_Delete.cs index e60d8d53ba60..18d97916c624 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_Delete.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_Delete.cs @@ -196,12 +196,12 @@ public partial class RemoveAzKustoDataConnection_Delete : global::System.Managem /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -448,12 +448,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -470,7 +470,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_DeleteViaIdentity.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_DeleteViaIdentity.cs index 9c61e533fc5f..81a1cc69f095 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_DeleteViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDataConnection_DeleteViaIdentity.cs @@ -126,12 +126,12 @@ public partial class RemoveAzKustoDataConnection_DeleteViaIdentity : global::Sys /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -401,12 +401,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -423,7 +423,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_Delete.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_Delete.cs index c4f703fc90fa..8a7eba1a0e00 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_Delete.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_Delete.cs @@ -195,12 +195,12 @@ public partial class RemoveAzKustoDatabasePrincipalAssignment_Delete : global::S /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -447,12 +447,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -469,7 +469,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, PrincipalAssignmentName=PrincipalAssignmentName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_DeleteViaIdentity.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_DeleteViaIdentity.cs index 7ec926fbd567..af5867d49af4 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_DeleteViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipalAssignment_DeleteViaIdentity.cs @@ -126,12 +126,12 @@ public partial class RemoveAzKustoDatabasePrincipalAssignment_DeleteViaIdentity /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -403,12 +403,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -425,7 +425,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveExpanded.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveExpanded.cs index 50785a6fd3ec..6615704a8916 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveExpanded.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_RemovePrincipals=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/removePrincipals" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzKustoDatabasePrincipal_RemoveExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Remove Database principals permissions.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class RemoveAzKustoDatabasePrincipal_RemoveExpanded : global::System.Management.Automation.PSCmdlet, @@ -69,10 +69,10 @@ public partial class RemoveAzKustoDatabasePrincipal_RemoveExpanded : global::Sys public string DatabaseName { get => this._databaseName; set => this._databaseName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest _databasePrincipalsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalListRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest _databasePrincipalsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalListRequest(); /// The list Kusto database principals operation request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest DatabasePrincipalsToRemoveBody { get => this._databasePrincipalsToRemoveBody; set => this._databasePrincipalsToRemoveBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest DatabasePrincipalsToRemoveBody { get => this._databasePrincipalsToRemoveBody; set => this._databasePrincipalsToRemoveBody = value; } /// /// The credentials, account, tenant, and subscription used for communication with Azure @@ -171,32 +171,32 @@ public partial class RemoveAzKustoDatabasePrincipal_RemoveExpanded : global::Sys ReadOnly = false, Description = @"The list of Kusto database principals.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get => DatabasePrincipalsToRemoveBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToRemoveBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get => DatabasePrincipalsToRemoveBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToRemoveBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -368,12 +368,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -390,7 +390,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=DatabasePrincipalsToRemoveBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -408,12 +408,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveViaIdentityExpanded.cs index 2bc0c6abcba2..dd0106ee2087 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabasePrincipal_RemoveViaIdentityExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_RemovePrincipals=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/removePrincipals" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzKustoDatabasePrincipal_RemoveViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Remove Database principals permissions.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class RemoveAzKustoDatabasePrincipal_RemoveViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -41,10 +41,10 @@ public partial class RemoveAzKustoDatabasePrincipal_RemoveViaIdentityExpanded : public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Kusto Client => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.ClientAPI; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest _databasePrincipalsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalListRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest _databasePrincipalsToRemoveBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalListRequest(); /// The list Kusto database principals operation request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalListRequest DatabasePrincipalsToRemoveBody { get => this._databasePrincipalsToRemoveBody; set => this._databasePrincipalsToRemoveBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalListRequest DatabasePrincipalsToRemoveBody { get => this._databasePrincipalsToRemoveBody; set => this._databasePrincipalsToRemoveBody = value; } /// /// The credentials, account, tenant, and subscription used for communication with Azure @@ -116,32 +116,32 @@ public partial class RemoveAzKustoDatabasePrincipal_RemoveViaIdentityExpanded : ReadOnly = false, Description = @"The list of Kusto database principals.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] Value { get => DatabasePrincipalsToRemoveBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToRemoveBody.Value = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Value { get => DatabasePrincipalsToRemoveBody.Value ?? null /* arrayOf */; set => DatabasePrincipalsToRemoveBody.Value = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -337,12 +337,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -359,7 +359,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DatabasePrincipalsToRemoveBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -377,12 +377,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_Delete.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_Delete.cs index 448db3a2f53e..cb25903711e3 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_Delete.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_Delete.cs @@ -182,12 +182,12 @@ public partial class RemoveAzKustoDatabase_Delete : global::System.Management.Au /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -433,12 +433,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -455,7 +455,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_DeleteViaIdentity.cs b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_DeleteViaIdentity.cs index a3b8ae029c9a..6629e8a3d57e 100644 --- a/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_DeleteViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/RemoveAzKustoDatabase_DeleteViaIdentity.cs @@ -126,12 +126,12 @@ public partial class RemoveAzKustoDatabase_DeleteViaIdentity : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -397,12 +397,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -419,7 +419,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/StartAzKustoCluster_Start.cs b/src/Kusto/generated/cmdlets/StartAzKustoCluster_Start.cs index c122a21029db..807513baafb2 100644 --- a/src/Kusto/generated/cmdlets/StartAzKustoCluster_Start.cs +++ b/src/Kusto/generated/cmdlets/StartAzKustoCluster_Start.cs @@ -168,12 +168,12 @@ public partial class StartAzKustoCluster_Start : global::System.Management.Autom /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -408,12 +408,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -430,7 +430,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/StartAzKustoCluster_StartViaIdentity.cs b/src/Kusto/generated/cmdlets/StartAzKustoCluster_StartViaIdentity.cs index 26b07283c7fa..74fd4a9761ca 100644 --- a/src/Kusto/generated/cmdlets/StartAzKustoCluster_StartViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/StartAzKustoCluster_StartViaIdentity.cs @@ -126,12 +126,12 @@ public partial class StartAzKustoCluster_StartViaIdentity : global::System.Manag /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -383,12 +383,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -405,7 +405,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/StopAzKustoCluster_Stop.cs b/src/Kusto/generated/cmdlets/StopAzKustoCluster_Stop.cs index ae11dfb6f7c6..e0b2cc6069aa 100644 --- a/src/Kusto/generated/cmdlets/StopAzKustoCluster_Stop.cs +++ b/src/Kusto/generated/cmdlets/StopAzKustoCluster_Stop.cs @@ -168,12 +168,12 @@ public partial class StopAzKustoCluster_Stop : global::System.Management.Automat /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -408,12 +408,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -430,7 +430,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/StopAzKustoCluster_StopViaIdentity.cs b/src/Kusto/generated/cmdlets/StopAzKustoCluster_StopViaIdentity.cs index 315c5ba1e835..e9d374eb8dd8 100644 --- a/src/Kusto/generated/cmdlets/StopAzKustoCluster_StopViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/StopAzKustoCluster_StopViaIdentity.cs @@ -126,12 +126,12 @@ public partial class StopAzKustoCluster_StopViaIdentity : global::System.Managem /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -383,12 +383,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -405,7 +405,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckExpanded.cs index 8beb736493f1..e0415f65f0cb 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.Kusto/locations/{location}/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoClusterNameAvailability_CheckExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the cluster name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoClusterNameAvailability_CheckExpanded : global::System.Management.Automation.PSCmdlet, @@ -41,10 +41,10 @@ public partial class TestAzKustoClusterNameAvailability_CheckExpanded : global:: public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Kusto Client => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.ClientAPI; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest _clusterNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest _clusterNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterCheckNameRequest(); /// The result returned from a cluster check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest ClusterNameBody { get => this._clusterNameBody; set => this._clusterNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest ClusterNameBody { get => this._clusterNameBody; set => this._clusterNameBody = value; } /// /// The credentials, account, tenant, and subscription used for communication with Azure @@ -162,24 +162,24 @@ public partial class TestAzKustoClusterNameAvailability_CheckExpanded : global:: /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -351,12 +351,12 @@ public TestAzKustoClusterNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -373,7 +373,7 @@ public TestAzKustoClusterNameAvailability_CheckExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, Location=Location, body=ClusterNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -391,12 +391,12 @@ public TestAzKustoClusterNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -408,7 +408,7 @@ public TestAzKustoClusterNameAvailability_CheckExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded.cs index a1f02c15f920..e34f912f24d3 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/providers/Microsoft.Kusto/locations/{location}/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoClusterNameAvailability_CheckViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the cluster name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -41,10 +41,10 @@ public partial class TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Kusto Client => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.ClientAPI; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest _clusterNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest _clusterNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterCheckNameRequest(); /// The result returned from a cluster check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterCheckNameRequest ClusterNameBody { get => this._clusterNameBody; set => this._clusterNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterCheckNameRequest ClusterNameBody { get => this._clusterNameBody; set => this._clusterNameBody = value; } /// /// The credentials, account, tenant, and subscription used for communication with Azure @@ -135,24 +135,24 @@ public partial class TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -340,12 +340,12 @@ public TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -362,7 +362,7 @@ public TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ClusterNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -380,12 +380,12 @@ public TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -397,7 +397,7 @@ public TestAzKustoClusterNameAvailability_CheckViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded.cs index 512735cbcc6e..2d2142d0d0a7 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] ClusterPrincipalAssignments_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/checkPrincipalAssignmentNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the principal assignment name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded : global::System.Management.Automation.PSCmdlet, @@ -103,10 +103,10 @@ public partial class TestAzKustoClusterPrincipalAssignmentNameAvailability_Check private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.HttpPipeline Pipeline { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignmentCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignmentCheckNameRequest(); /// A principal assignment check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -176,24 +176,24 @@ public partial class TestAzKustoClusterPrincipalAssignmentNameAvailability_Check /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -366,12 +366,12 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -388,7 +388,7 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId, body=PrincipalAssignmentNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -406,12 +406,12 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -423,7 +423,7 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs index edee88ef2005..998b4be86f2c 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] ClusterPrincipalAssignments_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/checkPrincipalAssignmentNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the principal assignment name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -97,10 +97,10 @@ public partial class TestAzKustoClusterPrincipalAssignmentNameAvailability_Check private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.HttpPipeline Pipeline { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterPrincipalAssignmentCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterPrincipalAssignmentCheckNameRequest(); /// A principal assignment check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -135,24 +135,24 @@ public partial class TestAzKustoClusterPrincipalAssignmentNameAvailability_Check /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -345,12 +345,12 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExp /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -367,7 +367,7 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExp if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=PrincipalAssignmentNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -385,12 +385,12 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExp /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -402,7 +402,7 @@ public TestAzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExp return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckExpanded.cs index 373573e151b1..98e2907ceb94 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DataConnections_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoDataConnectionNameAvailability_CheckExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the data connection name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoDataConnectionNameAvailability_CheckExpanded : global::System.Management.Automation.PSCmdlet, @@ -55,10 +55,10 @@ public partial class TestAzKustoDataConnectionNameAvailability_CheckExpanded : g public string ClusterName { get => this._clusterName; set => this._clusterName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest _dataConnectionNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest _dataConnectionNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionCheckNameRequest(); /// A data connection check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest DataConnectionNameBody { get => this._dataConnectionNameBody; set => this._dataConnectionNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest DataConnectionNameBody { get => this._dataConnectionNameBody; set => this._dataConnectionNameBody = value; } /// Backing field for property. private string _databaseName; @@ -190,24 +190,24 @@ public partial class TestAzKustoDataConnectionNameAvailability_CheckExpanded : g /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -379,12 +379,12 @@ public TestAzKustoDataConnectionNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -401,7 +401,7 @@ public TestAzKustoDataConnectionNameAvailability_CheckExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=DataConnectionNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -419,12 +419,12 @@ public TestAzKustoDataConnectionNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -436,7 +436,7 @@ public TestAzKustoDataConnectionNameAvailability_CheckExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded.cs index 8d53bf5d2a17..7ff9aa281318 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DataConnections_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the data connection name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -41,10 +41,10 @@ public partial class TestAzKustoDataConnectionNameAvailability_CheckViaIdentityE public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Kusto Client => Microsoft.Azure.PowerShell.Cmdlets.Kusto.Module.Instance.ClientAPI; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest _dataConnectionNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest _dataConnectionNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionCheckNameRequest(); /// A data connection check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionCheckNameRequest DataConnectionNameBody { get => this._dataConnectionNameBody; set => this._dataConnectionNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionCheckNameRequest DataConnectionNameBody { get => this._dataConnectionNameBody; set => this._dataConnectionNameBody = value; } /// /// The credentials, account, tenant, and subscription used for communication with Azure @@ -135,24 +135,24 @@ public partial class TestAzKustoDataConnectionNameAvailability_CheckViaIdentityE /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -349,12 +349,12 @@ public TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -371,7 +371,7 @@ public TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=DataConnectionNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -389,12 +389,12 @@ public TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -406,7 +406,7 @@ public TestAzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckExpanded.cs index 7fd231464a02..b8ea955d2518 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoDatabaseNameAvailability_CheckExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the database name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoDatabaseNameAvailability_CheckExpanded : global::System.Management.Automation.PSCmdlet, @@ -133,10 +133,10 @@ public partial class TestAzKustoDatabaseNameAvailability_CheckExpanded : global: public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest _resourceNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest _resourceNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameRequest(); /// The result returned from a database check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest ResourceNameBody { get => this._resourceNameBody; set => this._resourceNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest ResourceNameBody { get => this._resourceNameBody; set => this._resourceNameBody = value; } /// Backing field for property. private string _subscriptionId; @@ -176,24 +176,24 @@ public partial class TestAzKustoDatabaseNameAvailability_CheckExpanded : global: /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -365,12 +365,12 @@ public TestAzKustoDatabaseNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -387,7 +387,7 @@ public TestAzKustoDatabaseNameAvailability_CheckExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, SubscriptionId=SubscriptionId, body=ResourceNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -405,12 +405,12 @@ public TestAzKustoDatabaseNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -422,7 +422,7 @@ public TestAzKustoDatabaseNameAvailability_CheckExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded.cs index bffe5066a585..dff6a5d33e10 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Databases_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/checkNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoDatabaseNameAvailability_CheckViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the database name is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -113,10 +113,10 @@ public partial class TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpande public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest _resourceNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.CheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest _resourceNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.CheckNameRequest(); /// The result returned from a database check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameRequest ResourceNameBody { get => this._resourceNameBody; set => this._resourceNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameRequest ResourceNameBody { get => this._resourceNameBody; set => this._resourceNameBody = value; } /// The type of resource, for instance Microsoft.Kusto/Clusters/databases. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The type of resource, for instance Microsoft.Kusto/Clusters/databases.")] @@ -135,24 +135,24 @@ public partial class TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpande /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -344,12 +344,12 @@ public TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -366,7 +366,7 @@ public TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ResourceNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -384,12 +384,12 @@ public TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -401,7 +401,7 @@ public TestAzKustoDatabaseNameAvailability_CheckViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded.cs index 11e3e4404cef..e10b8145ff5b 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DatabasePrincipalAssignments_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/checkPrincipalAssignmentNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the database principal assignment is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded : global::System.Management.Automation.PSCmdlet, @@ -119,10 +119,10 @@ public partial class TestAzKustoDatabasePrincipalAssignmentNameAvailability_Chec private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.HttpPipeline Pipeline { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignmentCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignmentCheckNameRequest(); /// A principal assignment check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -192,24 +192,24 @@ public partial class TestAzKustoDatabasePrincipalAssignmentNameAvailability_Chec /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -382,12 +382,12 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -404,7 +404,7 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, SubscriptionId=SubscriptionId, body=PrincipalAssignmentNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -422,12 +422,12 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -439,7 +439,7 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs index 9b2cd393792b..946a82e30885 100644 --- a/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] DatabasePrincipalAssignments_CheckNameAvailability=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}/Databases/{databaseName}/checkPrincipalAssignmentNameAvailability" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Checks that the database principal assignment is valid and is not already in use.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -99,10 +99,10 @@ public partial class TestAzKustoDatabasePrincipalAssignmentNameAvailability_Chec private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.HttpPipeline Pipeline { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DatabasePrincipalAssignmentCheckNameRequest(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest _principalAssignmentNameBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DatabasePrincipalAssignmentCheckNameRequest(); /// A principal assignment check name availability request. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignmentCheckNameRequest PrincipalAssignmentNameBody { get => this._principalAssignmentNameBody; set => this._principalAssignmentNameBody = value; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -137,24 +137,24 @@ public partial class TestAzKustoDatabasePrincipalAssignmentNameAvailability_Chec /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -351,12 +351,12 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityEx /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -373,7 +373,7 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityEx if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=PrincipalAssignmentNameBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -391,12 +391,12 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityEx /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -408,7 +408,7 @@ public TestAzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityEx return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateExpanded.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateExpanded.cs index 62edab67e237..b29acc4de752 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateExpanded.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoCluster_UpdateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Update a Kusto cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Management.Automation.PSCmdlet, @@ -65,6 +65,17 @@ public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Manage PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] public global::System.Management.Automation.SwitchParameter EnableDiskEncryption { get => ParametersBody.EnableDiskEncryption ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.EnableDiskEncryption = value; } + /// A boolean value that indicates if double encryption is enabled. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A boolean value that indicates if double encryption is enabled.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A boolean value that indicates if double encryption is enabled.", + SerializedName = @"enableDoubleEncryption", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter EnableDoubleEncryption { get => ParametersBody.EnableDoubleEncryption ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.EnableDoubleEncryption = value; } + /// A boolean value that indicates if the purge operations are enabled. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A boolean value that indicates if the purge operations are enabled.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Body)] @@ -123,8 +134,8 @@ public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Manage ReadOnly = false, Description = @"The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ParametersBody.IdentityUserAssignedIdentity ?? null /* object */; set => ParametersBody.IdentityUserAssignedIdentity = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ParametersBody.IdentityUserAssignedIdentity ?? null /* object */; set => ParametersBody.IdentityUserAssignedIdentity = value; } /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } @@ -171,8 +182,8 @@ public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Manage ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get => ParametersBody.LanguageExtensionValue ?? null /* arrayOf */; set => ParametersBody.LanguageExtensionValue = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get => ParametersBody.LanguageExtensionValue ?? null /* arrayOf */; set => ParametersBody.LanguageExtensionValue = value; } /// Resource location. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource location.")] @@ -263,10 +274,10 @@ public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Manage public int OptimizedAutoscaleVersion { get => ParametersBody.OptimizedAutoscaleVersion; set => ParametersBody.OptimizedAutoscaleVersion = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdate(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdate(); /// Class representing an update to a Kusto cluster. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -368,8 +379,8 @@ public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Manage ReadOnly = false, Description = @"Resource tags.", SerializedName = @"tags", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags Tag { get => ParametersBody.Tag ?? null /* object */; set => ParametersBody.Tag = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags Tag { get => ParametersBody.Tag ?? null /* object */; set => ParametersBody.Tag = value; } /// The cluster's external tenants. [global::System.Management.Automation.AllowEmptyCollection] @@ -380,8 +391,8 @@ public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Manage ReadOnly = false, Description = @"The cluster's external tenants.", SerializedName = @"trustedExternalTenants", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get => ParametersBody.TrustedExternalTenant ?? null /* arrayOf */; set => ParametersBody.TrustedExternalTenant = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get => ParametersBody.TrustedExternalTenant ?? null /* arrayOf */; set => ParametersBody.TrustedExternalTenant = value; } /// Data management's service public IP address resource id. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Data management's service public IP address resource id.")] @@ -421,24 +432,24 @@ public partial class UpdateAzKustoCluster_UpdateExpanded : global::System.Manage /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -664,12 +675,12 @@ public UpdateAzKustoCluster_UpdateExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -686,7 +697,7 @@ public UpdateAzKustoCluster_UpdateExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -704,12 +715,12 @@ public UpdateAzKustoCluster_UpdateExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -721,7 +732,7 @@ public UpdateAzKustoCluster_UpdateExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateViaIdentityExpanded.cs index ae2d588a7dcf..2df5296b1993 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoCluster_UpdateViaIdentityExpanded.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [OpenAPI] Clusters_Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/Clusters/{clusterName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoCluster_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Update a Kusto cluster.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -65,6 +65,17 @@ public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::Sy PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] public global::System.Management.Automation.SwitchParameter EnableDiskEncryption { get => ParametersBody.EnableDiskEncryption ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.EnableDiskEncryption = value; } + /// A boolean value that indicates if double encryption is enabled. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A boolean value that indicates if double encryption is enabled.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A boolean value that indicates if double encryption is enabled.", + SerializedName = @"enableDoubleEncryption", + PossibleTypes = new [] { typeof(global::System.Management.Automation.SwitchParameter) })] + public global::System.Management.Automation.SwitchParameter EnableDoubleEncryption { get => ParametersBody.EnableDoubleEncryption ?? default(global::System.Management.Automation.SwitchParameter); set => ParametersBody.EnableDoubleEncryption = value; } + /// A boolean value that indicates if the purge operations are enabled. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A boolean value that indicates if the purge operations are enabled.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category(global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.ParameterCategory.Body)] @@ -123,8 +134,8 @@ public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::Sy ReadOnly = false, Description = @"The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ParametersBody.IdentityUserAssignedIdentity ?? null /* object */; set => ParametersBody.IdentityUserAssignedIdentity = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ParametersBody.IdentityUserAssignedIdentity ?? null /* object */; set => ParametersBody.IdentityUserAssignedIdentity = value; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity _inputObject; @@ -179,8 +190,8 @@ public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::Sy ReadOnly = false, Description = @"The list of language extensions.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] LanguageExtensionValue { get => ParametersBody.LanguageExtensionValue ?? null /* arrayOf */; set => ParametersBody.LanguageExtensionValue = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] LanguageExtensionValue { get => ParametersBody.LanguageExtensionValue ?? null /* arrayOf */; set => ParametersBody.LanguageExtensionValue = value; } /// Resource location. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Resource location.")] @@ -256,10 +267,10 @@ public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::Sy public int OptimizedAutoscaleVersion { get => ParametersBody.OptimizedAutoscaleVersion; set => ParametersBody.OptimizedAutoscaleVersion = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ClusterUpdate(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ClusterUpdate(); /// Class representing an update to a Kusto cluster. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdate ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdate ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -326,8 +337,8 @@ public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::Sy ReadOnly = false, Description = @"Resource tags.", SerializedName = @"tags", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterUpdateTags Tag { get => ParametersBody.Tag ?? null /* object */; set => ParametersBody.Tag = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterUpdateTags Tag { get => ParametersBody.Tag ?? null /* object */; set => ParametersBody.Tag = value; } /// The cluster's external tenants. [global::System.Management.Automation.AllowEmptyCollection] @@ -338,8 +349,8 @@ public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::Sy ReadOnly = false, Description = @"The cluster's external tenants.", SerializedName = @"trustedExternalTenants", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] TrustedExternalTenant { get => ParametersBody.TrustedExternalTenant ?? null /* arrayOf */; set => ParametersBody.TrustedExternalTenant = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] TrustedExternalTenant { get => ParametersBody.TrustedExternalTenant ?? null /* arrayOf */; set => ParametersBody.TrustedExternalTenant = value; } /// Data management's service public IP address resource id. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Data management's service public IP address resource id.")] @@ -379,24 +390,24 @@ public partial class UpdateAzKustoCluster_UpdateViaIdentityExpanded : global::Sy /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -639,12 +650,12 @@ public UpdateAzKustoCluster_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -661,7 +672,7 @@ public UpdateAzKustoCluster_UpdateViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -679,12 +690,12 @@ public UpdateAzKustoCluster_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -696,7 +707,7 @@ public UpdateAzKustoCluster_UpdateViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_Update.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_Update.cs index 6e189bf8e136..81aa5ed89de5 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_Update.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_Update.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDataConnection_Update", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDataConnection_Update : global::System.Management.Automation.PSCmdlet, @@ -130,7 +130,7 @@ public partial class UpdateAzKustoDataConnection_Update : global::System.Managem public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection _parameter; /// Class representing an data connection. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing an data connection.", ValueFromPipeline = true)] @@ -139,8 +139,8 @@ public partial class UpdateAzKustoDataConnection_Update : global::System.Managem ReadOnly = false, Description = @"Class representing an data connection.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -203,24 +203,24 @@ public partial class UpdateAzKustoDataConnection_Update : global::System.Managem /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -448,12 +448,12 @@ public UpdateAzKustoDataConnection_Update() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -470,7 +470,7 @@ public UpdateAzKustoDataConnection_Update() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, Name=Name, SubscriptionId=SubscriptionId, body=Parameter }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -488,12 +488,12 @@ public UpdateAzKustoDataConnection_Update() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -505,7 +505,7 @@ public UpdateAzKustoDataConnection_Update() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateExpanded.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateExpanded.cs index 1b574570cce0..f816094e4d5e 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateExpanded.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDataConnection_UpdateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDataConnection_UpdateExpanded : global::System.Management.Automation.PSCmdlet, @@ -153,10 +153,10 @@ public partial class UpdateAzKustoDataConnection_UpdateExpanded : global::System public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(); /// Class representing an data connection. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -219,24 +219,24 @@ public partial class UpdateAzKustoDataConnection_UpdateExpanded : global::System /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -464,12 +464,12 @@ public UpdateAzKustoDataConnection_UpdateExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -486,7 +486,7 @@ public UpdateAzKustoDataConnection_UpdateExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, DatabaseName=DatabaseName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -504,12 +504,12 @@ public UpdateAzKustoDataConnection_UpdateExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -521,7 +521,7 @@ public UpdateAzKustoDataConnection_UpdateExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentity.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentity.cs index d06f50ec6158..97c36f226c02 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDataConnection_UpdateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDataConnection_UpdateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -95,7 +95,7 @@ public partial class UpdateAzKustoDataConnection_UpdateViaIdentity : global::Sys public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection _parameter; /// Class representing an data connection. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing an data connection.", ValueFromPipeline = true)] @@ -104,8 +104,8 @@ public partial class UpdateAzKustoDataConnection_UpdateViaIdentity : global::Sys ReadOnly = false, Description = @"Class representing an data connection.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,24 +133,24 @@ public partial class UpdateAzKustoDataConnection_UpdateViaIdentity : global::Sys /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -401,12 +401,12 @@ public UpdateAzKustoDataConnection_UpdateViaIdentity() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -423,7 +423,7 @@ public UpdateAzKustoDataConnection_UpdateViaIdentity() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=Parameter }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -441,12 +441,12 @@ public UpdateAzKustoDataConnection_UpdateViaIdentity() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -458,7 +458,7 @@ public UpdateAzKustoDataConnection_UpdateViaIdentity() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentityExpanded.cs index cabe8475dfa4..66da4219621b 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDataConnection_UpdateViaIdentityExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDataConnection_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a data connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDataConnection_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -118,10 +118,10 @@ public partial class UpdateAzKustoDataConnection_UpdateViaIdentityExpanded : glo public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnection(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnection(); /// Class representing an data connection. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -149,24 +149,24 @@ public partial class UpdateAzKustoDataConnection_UpdateViaIdentityExpanded : glo /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -417,12 +417,12 @@ public UpdateAzKustoDataConnection_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -439,7 +439,7 @@ public UpdateAzKustoDataConnection_UpdateViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -457,12 +457,12 @@ public UpdateAzKustoDataConnection_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -474,7 +474,7 @@ public UpdateAzKustoDataConnection_UpdateViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_Update.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_Update.cs index e4d6e2d03e3b..66ca49427f71 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_Update.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_Update.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDatabase_Update", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDatabase_Update : global::System.Management.Automation.PSCmdlet, @@ -116,7 +116,7 @@ public partial class UpdateAzKustoDatabase_Update : global::System.Management.Au public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase _parameter; /// Class representing a Kusto database. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing a Kusto database.", ValueFromPipeline = true)] @@ -125,8 +125,8 @@ public partial class UpdateAzKustoDatabase_Update : global::System.Management.Au ReadOnly = false, Description = @"Class representing a Kusto database.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -189,24 +189,24 @@ public partial class UpdateAzKustoDatabase_Update : global::System.Management.Au /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -433,12 +433,12 @@ public UpdateAzKustoDatabase_Update() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -455,7 +455,7 @@ public UpdateAzKustoDatabase_Update() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId, body=Parameter }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -473,12 +473,12 @@ public UpdateAzKustoDatabase_Update() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -490,7 +490,7 @@ public UpdateAzKustoDatabase_Update() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateExpanded.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateExpanded.cs index 3859a9d45258..b2e957e06936 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateExpanded.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDatabase_UpdateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDatabase_UpdateExpanded : global::System.Management.Automation.PSCmdlet, @@ -139,10 +139,10 @@ public partial class UpdateAzKustoDatabase_UpdateExpanded : global::System.Manag public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database(); /// Class representing a Kusto database. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -205,24 +205,24 @@ public partial class UpdateAzKustoDatabase_UpdateExpanded : global::System.Manag /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -449,12 +449,12 @@ public UpdateAzKustoDatabase_UpdateExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -471,7 +471,7 @@ public UpdateAzKustoDatabase_UpdateExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceGroupName=ResourceGroupName, ClusterName=ClusterName, Name=Name, SubscriptionId=SubscriptionId, body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -489,12 +489,12 @@ public UpdateAzKustoDatabase_UpdateExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -506,7 +506,7 @@ public UpdateAzKustoDatabase_UpdateExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentity.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentity.cs index e033303d8b25..ad4690e913d8 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentity.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDatabase_UpdateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDatabase_UpdateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -95,7 +95,7 @@ public partial class UpdateAzKustoDatabase_UpdateViaIdentity : global::System.Ma public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase _parameter; /// Class representing a Kusto database. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Class representing a Kusto database.", ValueFromPipeline = true)] @@ -104,8 +104,8 @@ public partial class UpdateAzKustoDatabase_UpdateViaIdentity : global::System.Ma ReadOnly = false, Description = @"Class representing a Kusto database.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase) })] - public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase) })] + public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,24 +133,24 @@ public partial class UpdateAzKustoDatabase_UpdateViaIdentity : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -397,12 +397,12 @@ public UpdateAzKustoDatabase_UpdateViaIdentity() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -419,7 +419,7 @@ public UpdateAzKustoDatabase_UpdateViaIdentity() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=Parameter }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -437,12 +437,12 @@ public UpdateAzKustoDatabase_UpdateViaIdentity() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -454,7 +454,7 @@ public UpdateAzKustoDatabase_UpdateViaIdentity() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentityExpanded.cs b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentityExpanded.cs index f474e0990fcb..9c54371ed982 100644 --- a/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentityExpanded.cs +++ b/src/Kusto/generated/cmdlets/UpdateAzKustoDatabase_UpdateViaIdentityExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Kusto.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzKustoDatabase_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase))] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Description(@"Updates a database.")] [global::Microsoft.Azure.PowerShell.Cmdlets.Kusto.Generated] public partial class UpdateAzKustoDatabase_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -118,10 +118,10 @@ public partial class UpdateAzKustoDatabase_UpdateViaIdentityExpanded : global::S public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.Database(); + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase _parametersBody= new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.Database(); /// Class representing a Kusto database. - private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } + private Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ParametersBody { get => this._parametersBody; set => this._parametersBody = value; } /// /// The instance of the that the remote call will use. @@ -149,24 +149,24 @@ public partial class UpdateAzKustoDatabase_UpdateViaIdentityExpanded : global::S /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -413,12 +413,12 @@ public UpdateAzKustoDatabase_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -435,7 +435,7 @@ public UpdateAzKustoDatabase_UpdateViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.Kusto.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=ParametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -453,12 +453,12 @@ public UpdateAzKustoDatabase_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a the body result as a from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -470,7 +470,7 @@ public UpdateAzKustoDatabase_UpdateViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase WriteObject((await response)); } } diff --git a/src/Kusto/generated/runtime/HttpPipeline.cs b/src/Kusto/generated/runtime/HttpPipeline.cs index 89c0dd6fc369..01dfdb114d3d 100644 --- a/src/Kusto/generated/runtime/HttpPipeline.cs +++ b/src/Kusto/generated/runtime/HttpPipeline.cs @@ -47,7 +47,7 @@ public partial class SendAsyncFactory { /// /// This translates a generic-defined delegate for a listener into one that fits our ISendAsync pattern. - /// (Provided to support out-of-module delgation for Azure Cmdlets) + /// (Provided to support out-of-module delegation for Azure Cmdlets) /// /// The Pipeline Step as a delegate public SendAsyncFactory(SendAsyncStepDelegate step) => this.implementation = (request, listener, next) => @@ -85,4 +85,4 @@ public HttpPipeline Prepend(SendAsyncStepDelegate item) return this; } } -} \ No newline at end of file +} diff --git a/src/Kusto/help/Add-AzKustoClusterLanguageExtension.md b/src/Kusto/help/Add-AzKustoClusterLanguageExtension.md index ed189e088a73..3e00944145b9 100644 --- a/src/Kusto/help/Add-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/help/Add-AzKustoClusterLanguageExtension.md @@ -166,7 +166,7 @@ The list of language extensions. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: diff --git a/src/Kusto/help/Add-AzKustoDatabasePrincipal.md b/src/Kusto/help/Add-AzKustoDatabasePrincipal.md index 3ec01b65547d..9810f3444899 100644 --- a/src/Kusto/help/Add-AzKustoDatabasePrincipal.md +++ b/src/Kusto/help/Add-AzKustoDatabasePrincipal.md @@ -141,7 +141,7 @@ The list of Kusto database principals. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Parameter Sets: (All) Aliases: @@ -192,7 +192,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 ## NOTES diff --git a/src/Kusto/help/Az.Kusto.md b/src/Kusto/help/Az.Kusto.md index 4bf33b986315..000c178585c0 100644 --- a/src/Kusto/help/Az.Kusto.md +++ b/src/Kusto/help/Az.Kusto.md @@ -1,6 +1,6 @@ --- Module Name: Az.Kusto -Module Guid: af390c08-e984-4145-81c9-effe6fb4c9f6 +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/help/Get-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/help/Get-AzKustoAttachedDatabaseConfiguration.md index 985a083e1f17..57c511580db7 100644 --- a/src/Kusto/help/Get-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/help/Get-AzKustoAttachedDatabaseConfiguration.md @@ -160,7 +160,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoCluster.md b/src/Kusto/help/Get-AzKustoCluster.md index 43c2081f0c35..72aa037ed7bf 100644 --- a/src/Kusto/help/Get-AzKustoCluster.md +++ b/src/Kusto/help/Get-AzKustoCluster.md @@ -150,7 +150,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoClusterFollowerDatabase.md b/src/Kusto/help/Get-AzKustoClusterFollowerDatabase.md index 233733c59f17..9d475ad9cd7b 100644 --- a/src/Kusto/help/Get-AzKustoClusterFollowerDatabase.md +++ b/src/Kusto/help/Get-AzKustoClusterFollowerDatabase.md @@ -134,7 +134,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoClusterLanguageExtension.md b/src/Kusto/help/Get-AzKustoClusterLanguageExtension.md index 3d326a8e2613..503e1b133c8a 100644 --- a/src/Kusto/help/Get-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/help/Get-AzKustoClusterLanguageExtension.md @@ -135,7 +135,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoClusterPrincipalAssignment.md b/src/Kusto/help/Get-AzKustoClusterPrincipalAssignment.md index b80a8ced5fa0..46d4faba5d6a 100644 --- a/src/Kusto/help/Get-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/help/Get-AzKustoClusterPrincipalAssignment.md @@ -160,7 +160,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoClusterSku.md b/src/Kusto/help/Get-AzKustoClusterSku.md index a7576b3b90a0..c38669c54f83 100644 --- a/src/Kusto/help/Get-AzKustoClusterSku.md +++ b/src/Kusto/help/Get-AzKustoClusterSku.md @@ -157,9 +157,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoDataConnection.md b/src/Kusto/help/Get-AzKustoDataConnection.md index 1be14a28b0e6..0b3ffe29dda0 100644 --- a/src/Kusto/help/Get-AzKustoDataConnection.md +++ b/src/Kusto/help/Get-AzKustoDataConnection.md @@ -174,7 +174,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoDatabase.md b/src/Kusto/help/Get-AzKustoDatabase.md index 918b5b7ef6cd..6bad73b0202e 100644 --- a/src/Kusto/help/Get-AzKustoDatabase.md +++ b/src/Kusto/help/Get-AzKustoDatabase.md @@ -160,7 +160,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoDatabasePrincipal.md b/src/Kusto/help/Get-AzKustoDatabasePrincipal.md index ad6854e4407e..d747acab2370 100644 --- a/src/Kusto/help/Get-AzKustoDatabasePrincipal.md +++ b/src/Kusto/help/Get-AzKustoDatabasePrincipal.md @@ -150,7 +150,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 ## NOTES diff --git a/src/Kusto/help/Get-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/help/Get-AzKustoDatabasePrincipalAssignment.md index 5d2c847d02fc..060f30fa2170 100644 --- a/src/Kusto/help/Get-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/help/Get-AzKustoDatabasePrincipalAssignment.md @@ -178,7 +178,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 ## NOTES diff --git a/src/Kusto/help/Invoke-AzKustoDataConnectionValidation.md b/src/Kusto/help/Invoke-AzKustoDataConnectionValidation.md index 524ffc908218..10d2550e3c35 100644 --- a/src/Kusto/help/Invoke-AzKustoDataConnectionValidation.md +++ b/src/Kusto/help/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 @@ -471,7 +517,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 ## NOTES diff --git a/src/Kusto/help/New-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/help/New-AzKustoAttachedDatabaseConfiguration.md index e8d7a81532ce..079cede163c7 100644 --- a/src/Kusto/help/New-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/help/New-AzKustoAttachedDatabaseConfiguration.md @@ -242,7 +242,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 ## NOTES diff --git a/src/Kusto/help/New-AzKustoCluster.md b/src/Kusto/help/New-AzKustoCluster.md index f5bd3fd01fc0..bb9bd6291ab1 100644 --- a/src/Kusto/help/New-AzKustoCluster.md +++ b/src/Kusto/help/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 ] @@ -33,7 +34,7 @@ Create or update a Kusto cluster. ### 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 -------- ---- ---- ---- @@ -89,6 +90,21 @@ Accept pipeline input: False Accept wildcard characters: 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 A boolean value that indicates if the purge operations are enabled. @@ -200,7 +216,7 @@ The list of language extensions. To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: @@ -412,7 +428,7 @@ The cluster's external tenants. To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] Parameter Sets: (All) Aliases: @@ -521,7 +537,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 ## NOTES diff --git a/src/Kusto/help/New-AzKustoClusterPrincipalAssignment.md b/src/Kusto/help/New-AzKustoClusterPrincipalAssignment.md index 08d8c483a398..2ebaeda6e9bb 100644 --- a/src/Kusto/help/New-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/help/New-AzKustoClusterPrincipalAssignment.md @@ -242,7 +242,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 ## NOTES diff --git a/src/Kusto/help/New-AzKustoDataConnection.md b/src/Kusto/help/New-AzKustoDataConnection.md index c8d3e68b1528..f273e194b62b 100644 --- a/src/Kusto/help/New-AzKustoDataConnection.md +++ b/src/Kusto/help/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. @@ -59,7 +77,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 ---- -------- ---- ---- @@ -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 @@ -423,7 +471,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 ## NOTES diff --git a/src/Kusto/help/New-AzKustoDatabase.md b/src/Kusto/help/New-AzKustoDatabase.md index 1a481ffefe4e..79186b83848e 100644 --- a/src/Kusto/help/New-AzKustoDatabase.md +++ b/src/Kusto/help/New-AzKustoDatabase.md @@ -240,7 +240,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 ## NOTES diff --git a/src/Kusto/help/New-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/help/New-AzKustoDatabasePrincipalAssignment.md index 16652dd6566a..0b8c6a3bd87b 100644 --- a/src/Kusto/help/New-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/help/New-AzKustoDatabasePrincipalAssignment.md @@ -257,7 +257,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 ## NOTES diff --git a/src/Kusto/help/Remove-AzKustoClusterLanguageExtension.md b/src/Kusto/help/Remove-AzKustoClusterLanguageExtension.md index 4a27f60e503e..366a9f0baee7 100644 --- a/src/Kusto/help/Remove-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/help/Remove-AzKustoClusterLanguageExtension.md @@ -166,7 +166,7 @@ The list of language extensions. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: diff --git a/src/Kusto/help/Remove-AzKustoDatabasePrincipal.md b/src/Kusto/help/Remove-AzKustoDatabasePrincipal.md index 56126896c0f2..35674d0e2b4f 100644 --- a/src/Kusto/help/Remove-AzKustoDatabasePrincipal.md +++ b/src/Kusto/help/Remove-AzKustoDatabasePrincipal.md @@ -140,7 +140,7 @@ The list of Kusto database principals. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Parameter Sets: (All) Aliases: @@ -191,7 +191,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 ## NOTES diff --git a/src/Kusto/help/Test-AzKustoClusterNameAvailability.md b/src/Kusto/help/Test-AzKustoClusterNameAvailability.md index 7bdbf689aa23..069516e05d67 100644 --- a/src/Kusto/help/Test-AzKustoClusterNameAvailability.md +++ b/src/Kusto/help/Test-AzKustoClusterNameAvailability.md @@ -185,7 +185,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 ## NOTES diff --git a/src/Kusto/help/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md b/src/Kusto/help/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md index c2acdf58896c..26d23cbae256 100644 --- a/src/Kusto/help/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md +++ b/src/Kusto/help/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md @@ -201,7 +201,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 ## NOTES diff --git a/src/Kusto/help/Test-AzKustoDataConnectionNameAvailability.md b/src/Kusto/help/Test-AzKustoDataConnectionNameAvailability.md index b423dea3bd40..82e4b1ad0912 100644 --- a/src/Kusto/help/Test-AzKustoDataConnectionNameAvailability.md +++ b/src/Kusto/help/Test-AzKustoDataConnectionNameAvailability.md @@ -216,7 +216,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 ## NOTES diff --git a/src/Kusto/help/Test-AzKustoDatabaseNameAvailability.md b/src/Kusto/help/Test-AzKustoDatabaseNameAvailability.md index cfa4d10c7b83..9b97bdfb2e6b 100644 --- a/src/Kusto/help/Test-AzKustoDatabaseNameAvailability.md +++ b/src/Kusto/help/Test-AzKustoDatabaseNameAvailability.md @@ -201,7 +201,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 ## NOTES diff --git a/src/Kusto/help/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md b/src/Kusto/help/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md index cf9a339a8e17..d9d5ff1b076e 100644 --- a/src/Kusto/help/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md +++ b/src/Kusto/help/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md @@ -216,7 +216,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 ## NOTES diff --git a/src/Kusto/help/Update-AzKustoCluster.md b/src/Kusto/help/Update-AzKustoCluster.md index 9b7434713373..e96e02c14c39 100644 --- a/src/Kusto/help/Update-AzKustoCluster.md +++ b/src/Kusto/help/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 ] @@ -115,6 +116,21 @@ Accept pipeline input: False Accept wildcard characters: 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 A boolean value that indicates if the purge operations are enabled. @@ -242,7 +258,7 @@ The list of language extensions. To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: @@ -454,7 +470,7 @@ The cluster's external tenants. To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] Parameter Sets: (All) Aliases: @@ -550,7 +566,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 ## NOTES diff --git a/src/Kusto/help/Update-AzKustoDataConnection.md b/src/Kusto/help/Update-AzKustoDataConnection.md index 7f4fc219217d..2a7c9fd84721 100644 --- a/src/Kusto/help/Update-AzKustoDataConnection.md +++ b/src/Kusto/help/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 @@ -502,7 +534,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 ## NOTES diff --git a/src/Kusto/help/Update-AzKustoDatabase.md b/src/Kusto/help/Update-AzKustoDatabase.md index d7a64da32d8b..59d528247554 100644 --- a/src/Kusto/help/Update-AzKustoDatabase.md +++ b/src/Kusto/help/Update-AzKustoDatabase.md @@ -307,7 +307,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 ## NOTES diff --git a/src/Kusto/internal/Get-AzKustoOperation.ps1 b/src/Kusto/internal/Get-AzKustoOperation.ps1 index 9174985905ad..f6c6876701a1 100644 --- a/src/Kusto/internal/Get-AzKustoOperation.ps1 +++ b/src/Kusto/internal/Get-AzKustoOperation.ps1 @@ -28,12 +28,12 @@ PS C:\> {{ Add code here }} {{ Add output here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustooperation #> function Get-AzKustoOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] diff --git a/src/Kusto/internal/Invoke-AzKustoDataConnectionValidation.ps1 b/src/Kusto/internal/Invoke-AzKustoDataConnectionValidation.ps1 index 21b153989102..00a628c03d81 100644 --- a/src/Kusto/internal/Invoke-AzKustoDataConnectionValidation.ps1 +++ b/src/Kusto/internal/Invoke-AzKustoDataConnectionValidation.ps1 @@ -59,11 +59,11 @@ ErrorMessage event hub resource id and consumer group tuple provided are already used .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult .Notes COMPLEX PARAMETER PROPERTIES @@ -88,7 +88,7 @@ PARAMETER : Class representing an data connection val 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='DataExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Data', Mandatory)] @@ -132,7 +132,7 @@ param( [Parameter(ParameterSetName='Data', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='DataViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation] # Class representing an data connection validation. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -167,6 +167,12 @@ param( # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] [System.Management.Automation.SwitchParameter] @@ -187,6 +193,12 @@ param( # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] [System.Uri] diff --git a/src/Kusto/internal/New-AzKustoDataConnection.ps1 b/src/Kusto/internal/New-AzKustoDataConnection.ps1 index 23c07b8f0d3f..11cf662d5ab4 100644 --- a/src/Kusto/internal/New-AzKustoDataConnection.ps1 +++ b/src/Kusto/internal/New-AzKustoDataConnection.ps1 @@ -25,7 +25,7 @@ Kind Location Name Type ---- -------- ---- ---- EventHub East US testnewkustocluster/mykustodatabase/myeventhubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Example -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 ---- -------- ---- ---- @@ -38,9 +38,9 @@ Kind Location Name Type IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -53,7 +53,7 @@ PARAMETER : Class representing an data connection. 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='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -91,7 +91,7 @@ param( [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection] # Class representing an data connection. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/Kusto/internal/New-AzKustoDatabase.ps1 b/src/Kusto/internal/New-AzKustoDatabase.ps1 index ec67e9ff2d39..b7e6357d1b6b 100644 --- a/src/Kusto/internal/New-AzKustoDatabase.ps1 +++ b/src/Kusto/internal/New-AzKustoDatabase.ps1 @@ -26,9 +26,9 @@ Kind Location Name Type ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/Databases .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -41,7 +41,7 @@ PARAMETER : Class representing a Kusto database. 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(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -73,7 +73,7 @@ param( [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase] # Class representing a Kusto database. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/Kusto/internal/ProxyCmdletDefinitions.ps1 b/src/Kusto/internal/ProxyCmdletDefinitions.ps1 index b18875d9403c..7a9d8b3f3588 100644 --- a/src/Kusto/internal/ProxyCmdletDefinitions.ps1 +++ b/src/Kusto/internal/ProxyCmdletDefinitions.ps1 @@ -28,12 +28,12 @@ PS C:\> {{ Add code here }} {{ Add output here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation .Link https://docs.microsoft.com/en-us/powershell/module/az.kusto/get-azkustooperation #> function Get-AzKustoOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IOperation])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] @@ -180,11 +180,11 @@ ErrorMessage event hub resource id and consumer group tuple provided are already used .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult .Notes COMPLEX PARAMETER PROPERTIES @@ -209,7 +209,7 @@ PARAMETER : Class representing an data connection val 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='DataExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Data', Mandatory)] @@ -253,7 +253,7 @@ param( [Parameter(ParameterSetName='Data', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='DataViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidation] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidation] # Class representing an data connection validation. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -288,6 +288,12 @@ param( # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] [System.Management.Automation.SwitchParameter] @@ -308,6 +314,12 @@ param( # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Runtime')] [System.Uri] @@ -397,9 +409,9 @@ Kind Location Name Type ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/Databases .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -412,7 +424,7 @@ PARAMETER : Class representing a Kusto database. 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(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -444,7 +456,7 @@ param( [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase] # Class representing a Kusto database. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -588,7 +600,7 @@ Kind Location Name Type ---- -------- ---- ---- EventHub East US testnewkustocluster/mykustodatabase/myeventhubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Example -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 ---- -------- ---- ---- @@ -601,9 +613,9 @@ Kind Location Name Type IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -616,7 +628,7 @@ PARAMETER : Class representing an data connection. 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='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -654,7 +666,7 @@ param( [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection] # Class representing an data connection. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -825,11 +837,11 @@ Kind Location Name Type ReadOnlyFollowing East US myfollowercluster/mykustodatabase Microsoft.Kusto/Clusters/Databases .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -853,7 +865,7 @@ PARAMETER : Class representing a Kusto database. 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='Update', Mandatory)] @@ -898,7 +910,7 @@ param( [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase] # Class representing a Kusto database. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -1080,11 +1092,11 @@ Kind Location Name Type IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -1108,7 +1120,7 @@ PARAMETER : Class representing an data connection. 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='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] @@ -1160,7 +1172,7 @@ param( [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection] # Class representing an data connection. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/Kusto/internal/Update-AzKustoDataConnection.ps1 b/src/Kusto/internal/Update-AzKustoDataConnection.ps1 index 725d2271d438..d740dc055435 100644 --- a/src/Kusto/internal/Update-AzKustoDataConnection.ps1 +++ b/src/Kusto/internal/Update-AzKustoDataConnection.ps1 @@ -59,11 +59,11 @@ Kind Location Name Type IotHub East US testnewkustocluster/mykustodatabase/myiothubdc Microsoft.Kusto/Clusters/Databases/DataConnections .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -87,7 +87,7 @@ PARAMETER : Class representing an data connection. 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='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] @@ -139,7 +139,7 @@ param( [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection] # Class representing an data connection. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/Kusto/internal/Update-AzKustoDatabase.ps1 b/src/Kusto/internal/Update-AzKustoDatabase.ps1 index c269adfb0589..91322518425c 100644 --- a/src/Kusto/internal/Update-AzKustoDatabase.ps1 +++ b/src/Kusto/internal/Update-AzKustoDatabase.ps1 @@ -52,11 +52,11 @@ Kind Location Name Type ReadOnlyFollowing East US myfollowercluster/mykustodatabase Microsoft.Kusto/Clusters/Databases .Inputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Inputs Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.IKustoIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase .Notes COMPLEX PARAMETER PROPERTIES @@ -80,7 +80,7 @@ PARAMETER : Class representing a Kusto database. 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='Update', Mandatory)] @@ -125,7 +125,7 @@ param( [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase] # Class representing a Kusto database. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/Kusto/readme.md b/src/Kusto/readme.md index 41968963685c..2b8a77800091 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.4 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. @@ -52,7 +52,7 @@ In this directory, run AutoRest: require: - $(this-folder)/../readme.azure.noprofile.md input-file: - - $(repo)/specification/azure-kusto/resource-manager/Microsoft.Kusto/stable/2020-02-15/kusto.json + - $(repo)/specification/azure-kusto/resource-manager/Microsoft.Kusto/stable/2020-06-14/kusto.json ``` @@ -127,5 +127,5 @@ directive: # Correct some generated code - from: source-file-csharp where: $ - transform: $ = $.replace('internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Property', 'public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Property'); + transform: $ = $.replace('internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Property', 'public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Property'); ``` diff --git a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json index 61b328ec86f5..2462653d737b 100644 --- a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json +++ b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json @@ -1,17 +1,10 @@ { - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/addLanguageExtensions?api-version=2020-02-15+1": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/addLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"R\"\r\n }\r\n ]\r\n}", "Headers": { - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], - "CommandName": [ "Add-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -21,39 +14,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0eca6069-afaa-43cd-a1d2-e0930d7c6281" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15" ], + "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": [ "7dc86896-0f88-4fb4-9d7a-1875d7a3b576" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222047Z:7dc86896-0f88-4fb4-9d7a-1875d7a3b576" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:20:47 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:10:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+2": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,39 +55,39 @@ "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": [ "787ba743-afd7-47b4-918e-af8010499bcd" ], - "x-ms-correlation-request-id": [ "c6ce563e-66d6-462d-898a-0b1447c63492" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222118Z:c6ce563e-66d6-462d-898a-0b1447c63492" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:21:18 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:11:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+3": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -103,39 +96,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "fb402d52-cd39-4ea4-b76a-29c1376d6133" ], - "x-ms-request-id": [ "bac20939-0b06-4e96-b61e-04c865c011d3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222148Z:fb402d52-cd39-4ea4-b76a-29c1376d6133" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:21:47 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:11:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+4": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -144,39 +137,39 @@ "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": [ "bb4d4895-cb37-45d1-8203-0f3c0cbc87cb" ], - "x-ms-correlation-request-id": [ "06cb6552-1fc3-4e80-8de6-067a12033745" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222219Z:06cb6552-1fc3-4e80-8de6-067a12033745" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:22:18 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:12:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+5": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70", "71" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -185,39 +178,39 @@ "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": [ "3185cfd2-4522-4fda-bef6-66d399024758" ], - "x-ms-correlation-request-id": [ "5d1bf45a-1925-4c7e-9f31-3fee910a00ec" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222249Z:5d1bf45a-1925-4c7e-9f31-3fee910a00ec" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:22:48 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+6": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70", "71", "72" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -226,39 +219,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5df81b83-1c99-43fd-8573-25edaa3c099e" ], - "x-ms-request-id": [ "1507146c-ccc6-4200-82b2-1ddb3dff4258" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222319Z:5df81b83-1c99-43fd-8573-25edaa3c099e" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:23:18 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:13:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+7": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70", "71", "72", "73" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -267,39 +260,39 @@ "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": [ "4e9fd683-c94d-4aa7-96d0-d7831733624b" ], - "x-ms-correlation-request-id": [ "3b81659f-0721-43eb-a1d2-68b45fe63e78" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222350Z:3b81659f-0721-43eb-a1d2-68b45fe63e78" ], + "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-routing-request-id": [ "NORTHEUROPE:20200802T231340Z:ef1ec114-5bdf-43a6-91be-b4ea759e34a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:23:50 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:13:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+8": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70", "71", "72", "73", "74" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -308,39 +301,39 @@ "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": [ "b82b07c9-41e1-463b-946c-9bfbd543123f" ], - "x-ms-correlation-request-id": [ "f1f627c6-da09-405a-8141-e7bf609762ee" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222420Z:f1f627c6-da09-405a-8141-e7bf609762ee" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:24:19 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:14:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+9": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70", "71", "72", "73", "74", "75" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -349,39 +342,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "d9269a94-b679-4299-b84e-bcc6b549856f" ], - "x-ms-request-id": [ "1a3fd306-3eec-41ed-8aa2-0e5b2cf92635" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222450Z:d9269a94-b679-4299-b84e-bcc6b549856f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:24:50 GMT" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:14:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "472" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:20:48.85766Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15+10": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70", "71", "72", "73", "74", "75", "76" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -390,39 +383,39 @@ "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": [ "ec640e2a-bdd2-48bb-85de-57a64b888425" ], - "x-ms-correlation-request-id": [ "029aa184-2480-4397-b636-cb7f215b09f6" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222521Z:029aa184-2480-4397-b636-cb7f215b09f6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "5d879a1b-86f2-4cbf-b0e5-5a232181f7d5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:25:20 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:15:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "477" ], + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"name\":\"666b5483-dfa4-420f-a9de-62d97c3e8c08\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T22:20:47.7013532Z\",\"endTime\":\"2020-04-07T22:25:18.915694Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4b567314-4e6f-46cb-b3f2-357cce752364\",\"provisioningState\":\"Succeeded\"}}" + "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/666b5483-dfa4-420f-a9de-62d97c3e8c08?api-version=2020-02-15\u0026operationResultResponseType=Location+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/666b5483-dfa4-420f-a9de-62d97c3e8c08?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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77" ], - "x-ms-client-request-id": [ "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6", "4d0b4d3c-aac4-43ea-a0e6-f6ee513ac8b6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -431,37 +424,447 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3a52ef70-d14e-4561-bf02-caa3e41648e3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-correlation-request-id": [ "11d371d3-abaa-4733-9a54-e439a14ab685" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222521Z:11d371d3-abaa-4733-9a54-e439a14ab685" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:15:40 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:16:11 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:16:41 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:17:11 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:17:41 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:18:12 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:18:41 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:19:12 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], - "Date": [ "Tue, 07 Apr 2020 22:25:21 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:19:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:20:13 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/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/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/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "ed3c6e8c-9f4c-417e-a3ed-c54d693557d4" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "0aa027cd-8ea0-4798-8c40-8e392e51d734" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -470,41 +873,34 @@ "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": [ "0d903b2d-6125-452e-8263-28b9007e5599" ], - "x-ms-correlation-request-id": [ "1ca39e32-d872-4d93-8ca5-987bc2ff46ef" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222522Z:1ca39e32-d872-4d93-8ca5-987bc2ff46ef" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:25:21 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "780" ], + "Content-Length": [ "823" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/addLanguageExtensions?api-version=2020-02-15+2": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/addLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"PYTHON\"\r\n }\r\n ]\r\n}", "Headers": { - "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], - "CommandName": [ "Add-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -514,39 +910,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "669b35a5-d6a1-4121-973f-4a2ada9223d1" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15" ], + "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": [ "2016c40c-374f-4629-a14b-8302d67179a9" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222522Z:2016c40c-374f-4629-a14b-8302d67179a9" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:25:22 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:20:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+3": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -555,39 +951,39 @@ "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": [ "daf66d68-989d-4886-8466-6fd7568a7d42" ], - "x-ms-correlation-request-id": [ "cdc12471-ddac-49e8-a51c-b433ffd672a4" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222554Z:cdc12471-ddac-49e8-a51c-b433ffd672a4" ], + "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:20200802T232044Z:7f9c538e-0b82-421a-bc45-3bcd185ef533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:25:53 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:20:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+4": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -596,39 +992,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2a72ec61-15c1-4dcc-813a-014450d2e23e" ], - "x-ms-request-id": [ "a00af63e-7561-4779-8254-8f3fa619139a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222624Z:2a72ec61-15c1-4dcc-813a-014450d2e23e" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:26:23 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:21:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+5": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -637,39 +1033,39 @@ "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": [ "24457168-08e8-4c84-aab8-3ad969f09aee" ], - "x-ms-correlation-request-id": [ "b3790e58-fa1a-42f9-bf98-f65dcb790164" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222655Z:b3790e58-fa1a-42f9-bf98-f65dcb790164" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:26:54 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:21:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+6": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -678,39 +1074,39 @@ "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": [ "fcea6b83-5664-4cca-aa8e-5d2c05709fa5" ], - "x-ms-correlation-request-id": [ "5ec1ac16-df8b-4785-bc18-5075eff912e5" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222725Z:5ec1ac16-df8b-4785-bc18-5075eff912e5" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:27:24 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:22:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+7": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -719,39 +1115,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "75b760b6-c1db-41c8-8b3c-1cc4c6eeaf84" ], - "x-ms-request-id": [ "dd819daa-2cd5-4354-8712-56c0c398e023" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222755Z:75b760b6-c1db-41c8-8b3c-1cc4c6eeaf84" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:27:55 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:22:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+8": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -760,39 +1156,39 @@ "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": [ "b4818f3b-defc-49ee-a3db-56671f56f1c0" ], - "x-ms-correlation-request-id": [ "d431d918-5d12-459e-ae9b-892bf7ee7710" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222826Z:d431d918-5d12-459e-ae9b-892bf7ee7710" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:28:25 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:23:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+9": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -801,39 +1197,39 @@ "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": [ "d24acca8-dc67-4411-8568-4cca1d59c91c" ], - "x-ms-correlation-request-id": [ "31a8ddf1-5dc3-4a4d-80bc-0442431b6e4e" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222856Z:31a8ddf1-5dc3-4a4d-80bc-0442431b6e4e" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:28:56 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:23:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+10": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -842,39 +1238,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "fd9364c0-449f-48c0-86b9-7a3ad867ae9f" ], - "x-ms-request-id": [ "40730dd3-4b34-4839-83e2-44de8b4d8c27" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222926Z:fd9364c0-449f-48c0-86b9-7a3ad867ae9f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:29:25 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:24:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+11": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -883,39 +1279,39 @@ "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": [ "e7c3ed83-4243-45ae-883c-faa5368cfccc" ], - "x-ms-correlation-request-id": [ "e6454306-544d-495a-abaa-cdccf13712d9" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T222957Z:e6454306-544d-495a-abaa-cdccf13712d9" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:29:57 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:24:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+12": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -924,39 +1320,39 @@ "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": [ "1836f6b1-79c0-4e64-9c4a-d9c42c92550b" ], - "x-ms-correlation-request-id": [ "ab2c1ec7-688d-43c2-a06b-d29d5dfe4424" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223027Z:ab2c1ec7-688d-43c2-a06b-d29d5dfe4424" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:30:27 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:25:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+13": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -965,39 +1361,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5af9e5b5-c7e6-4786-9df8-9b87cac9aa31" ], - "x-ms-request-id": [ "5999f52f-ff63-4a9f-8b7f-54bbf70ffe27" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223058Z:5af9e5b5-c7e6-4786-9df8-9b87cac9aa31" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:30:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:25:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+14": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1006,39 +1402,39 @@ "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": [ "3b040310-3964-4359-80bc-426fd4513455" ], - "x-ms-correlation-request-id": [ "83de8a35-0547-488b-b576-96d1224fa246" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223128Z:83de8a35-0547-488b-b576-96d1224fa246" ], + "x-ms-request-id": [ "c4b596e8-4894-4d5c-ab6c-7e233bc64b9c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:31:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:26:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+15": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1047,39 +1443,39 @@ "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": [ "35ecb835-25c5-4de7-9cf0-6238d56ef7cd" ], - "x-ms-correlation-request-id": [ "0c5fbdab-e5cc-4986-889a-85241cb56ee3" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223159Z:0c5fbdab-e5cc-4986-889a-85241cb56ee3" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:31:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:26:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+16": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1088,39 +1484,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e243a34b-4a41-4381-87ce-980d56c43cde" ], - "x-ms-request-id": [ "892cb300-b6fe-4260-937e-969d19c0c642" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223229Z:e243a34b-4a41-4381-87ce-980d56c43cde" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:32:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:27:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+17": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1129,39 +1525,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], + "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" ], - "x-ms-request-id": [ "4d7834aa-325c-48c8-9c22-0395cbb8661a" ], - "x-ms-correlation-request-id": [ "0138ec98-c3dc-4f9f-a82b-3253350d3282" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223300Z:0138ec98-c3dc-4f9f-a82b-3253350d3282" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232750Z:a4d8044e-c06e-452e-b82c-c35b345cfec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:32:59 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:27:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+18": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1170,39 +1566,39 @@ "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": [ "bec9fa5a-9f4d-4daf-a71e-dd4d94656fa8" ], - "x-ms-correlation-request-id": [ "291b54a9-9f7a-49d1-bd70-8acc111c5fa0" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223330Z:291b54a9-9f7a-49d1-bd70-8acc111c5fa0" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:33:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:27:54.5842344Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15+19": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14\u0026operationResultResponseType=Location+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1211,103 +1607,21 @@ "Response": { "StatusCode": 200, "Headers": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "1b7761da-15b3-4f9d-a0f5-7ebdb014eaa9" ], - "x-ms-request-id": [ "b1bafcf1-56f5-42c9-a4a0-c7491800b954" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223400Z:1b7761da-15b3-4f9d-a0f5-7ebdb014eaa9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:33:59 GMT" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "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/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:25:24.2810617Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Running\"}}" - } - }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?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/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], - "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": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "add5c5c6-52e7-4697-87c0-2676ff1c66dd" ], - "x-ms-correlation-request-id": [ "bb5128e5-800f-42d6-b3e5-1f5136cd2e26" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223431Z:bb5128e5-800f-42d6-b3e5-1f5136cd2e26" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:34:31 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "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/c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"name\":\"c85a2167-89c8-4346-86f7-ff2b76015cf7\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T22:25:22.7966982Z\",\"endTime\":\"2020-04-07T22:34:27.3920552Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"8f8fa447-b59b-479b-a1a6-9352444f1382\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15\u0026operationResultResponseType=Location+21": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c85a2167-89c8-4346-86f7-ff2b76015cf7?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98" ], - "x-ms-client-request-id": [ "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf", "c4c19ecf-21c9-41a3-9dea-f8e73e4829cf" ], - "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": { "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "26b8b245-550f-47fa-948f-a9a7f4a1c5df" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "1137a3d5-4f40-4012-8f31-d2178c405f58" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T223431Z:1137a3d5-4f40-4012-8f31-d2178c405f58" ], + "x-ms-request-id": [ "f2c6251f-d0e7-446c-8c59-cd5f56ec1b34" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:34:31 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } diff --git a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Tests.ps1 b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Tests.ps1 index 071c2c1a5e76..568b77e66509 100644 --- a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Tests.ps1 +++ b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Tests.ps1 @@ -24,7 +24,7 @@ Describe 'Add-AzKustoClusterLanguageExtension' { $clusterName = $env.clusterName $clusterGetItem = Get-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName - + { Add-AzKustoClusterLanguageExtension -InputObject $clusterGetItem -Value (@{Name=$env.langExt2}) } | Should -Not -Throw } } diff --git a/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json index ef0903200799..a2e9ebb436a5 100644 --- a/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json +++ b/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoAttachedDatabaseConfiguration+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/attachedDatabaseConfigurations?api-version=2020-02-15+1": { + "Get-AzKustoAttachedDatabaseConfiguration+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/attachedDatabaseConfigurations?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/attachedDatabaseConfigurations?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/attachedDatabaseConfigurations?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "cd962132-65a4-498d-b5ab-7f38484f3f1d" ], + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "8de8dce2-49d0-4efa-ba1b-20d91a1dbb49" ], "CommandName": [ "Get-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Get-AzKustoAttachedDatabaseConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +19,39 @@ "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": [ "0d3b2743-c1ca-4996-b2c1-ad49c8d554eb" ], - "x-ms-correlation-request-id": [ "d70034c2-91a0-44f6-b497-8c9f70146eed" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T114555Z:d70034c2-91a0-44f6-b497-8c9f70146eed" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 11:45:55 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "675" ], + "Content-Length": [ "682" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig\",\"name\":\"sdkpsclustereuf/sdkpowershellfconfig\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"databaseName\":\"sdkpowershelldb\",\"attachedDatabaseNames\":[\"sdkpowershelldb\"],\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15+1": { + "Get-AzKustoAttachedDatabaseConfiguration+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfbgiwc7?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfbgiwc7?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "7aafd3f3-080c-416e-b910-f983b93f4d22" ], + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "450bf4f0-d958-4390-a7f8-c440bab4cb17" ], "CommandName": [ "Get-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Get-AzKustoAttachedDatabaseConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,26 +60,26 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "afb9dc4a-399b-440b-91d3-33924e6a1544" ], - "x-ms-correlation-request-id": [ "ff4e35c1-a809-4365-b1bf-0e089348932c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T114556Z:ff4e35c1-a809-4365-b1bf-0e089348932c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 11:45:55 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "673" ], + "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig\",\"name\":\"sdkpsclustereuf/sdkpowershellfconfig\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"databaseName\":\"sdkpowershelldb\",\"attachedDatabaseNames\":[\"sdkpowershelldb\"],\"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-AzKustoAttachedDatabaseConfiguration.Tests.ps1 b/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Tests.ps1 index 518afbfa3aea..230dd81fd69c 100644 --- a/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoAttachedDatabaseConfiguration.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -23,7 +23,7 @@ Describe 'Get-AzKustoAttachedDatabaseConfiguration' { $attachedDatabaseConfigurationName = $env.attachedDatabaseConfigurationName $followerClusterName = $env.followerClusterName $defaultPrincipalsModificationKind = $env.defaultPrincipalsModificationKind - $clusterResourceId= "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" $attachedDatabaseConfigurationFullName = $followerClusterName + "/" + $attachedDatabaseConfigurationName [array]$attachedDatabaseConfigurationGet = Get-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName @@ -40,7 +40,7 @@ Describe 'Get-AzKustoAttachedDatabaseConfiguration' { $attachedDatabaseConfigurationName = $env.attachedDatabaseConfigurationName $followerClusterName = $env.followerClusterName $defaultPrincipalsModificationKind = $env.defaultPrincipalsModificationKind - $clusterResourceId= "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" $attachedDatabaseConfigurationFullName = $followerClusterName + "/" + $attachedDatabaseConfigurationName $attachedDatabaseConfiguration = Get-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName -AttachedDatabaseConfigurationName $attachedDatabaseConfigurationName diff --git a/src/Kusto/test/Get-AzKustoCluster.Recording.json b/src/Kusto/test/Get-AzKustoCluster.Recording.json index 787175316741..c2d20132056a 100644 --- a/src/Kusto/test/Get-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Get-AzKustoCluster.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoCluster+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Get-AzKustoCluster+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906"], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "b16bed19-25e0-4c4c-8dac-2fa887c3056c" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], - "ParameterSetName": [ "__AllParameterSets"], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview"], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,40 +19,40 @@ "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": [ "101b91f1-2e83-4b8b-9626-547acad98409" ], - "x-ms-correlation-request-id": [ "a3bd7c2d-f5f9-4a16-8dc3-1eceeb3fa042" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170336Z:a3bd7c2d-f5f9-4a16-8dc3-1eceeb3fa042" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:03:35 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"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/sdkpowershellrg/providers/Microsoft.Kusto/clusters?api-version=2020-02-15+1": { + "Get-AzKustoCluster+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/clusters?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/clusters?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/clusters?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "108" ], - "x-ms-client-request-id": [ "1853e260-7805-4934-b958-22e4262ff602" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "faa135fd-4dda-46a2-a2a6-7956b3b9d471" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -61,25 +61,25 @@ "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": [ "a9cfc6bb-9e51-48b3-97ee-73e4e56003f9" ], - "x-ms-correlation-request-id": [ "69ab5302-c139-4af1-ba93-5ae14a0f35b4" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170336Z:69ab5302-c139-4af1-ba93-5ae14a0f35b4" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:03:35 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "2464" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7\",\"name\":\"testfclusterbgiwc7\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testfclusterbgiwc7.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testfclusterbgiwc7.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4\",\"name\":\"testclusterv76dg4\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterv76dg4.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterv76dg4.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoCluster.Tests.ps1 b/src/Kusto/test/Get-AzKustoCluster.Tests.ps1 index fa16c2544645..8cddb1177b4a 100644 --- a/src/Kusto/test/Get-AzKustoCluster.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoCluster.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoCluster.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } diff --git a/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json b/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json index c3799a3f3da0..8d846953ba49 100644 --- a/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoClusterFollowerDatabase+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/listFollowerDatabases?api-version=2020-02-15+1": { + "Get-AzKustoClusterFollowerDatabase+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listFollowerDatabases?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/listFollowerDatabases?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listFollowerDatabases?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "4e94496b-a911-49af-a3d6-ae2f456d7e0b" ], + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "a3892518-b4e9-4048-b522-b09f4bd64a56" ], "CommandName": [ "Get-AzKustoClusterFollowerDatabase" ], "FullCommandName": [ "Get-AzKustoClusterFollowerDatabase_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,25 +19,25 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "5b0c35e9-c069-4853-a217-0fd00a0689ff" ], - "x-ms-correlation-request-id": [ "8763cc17-3eb9-4b0b-b44c-807ed6bb96fa" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T140303Z:8763cc17-3eb9-4b0b-b44c-807ed6bb96fa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 14:03:03 GMT" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "261" ], + "Content-Length": [ "263" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf\",\"attachedDatabaseConfigurationName\":\"sdkpowershellfconfig\",\"databaseName\":\"sdkpowershelldb\"}]}" + "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-AzKustoClusterFollowerDatabase.Tests.ps1 b/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Tests.ps1 index be591586052e..9998b7a00244 100644 --- a/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoClusterFollowerDatabase.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -21,7 +21,7 @@ Describe 'Get-AzKustoClusterFollowerDatabase' { $databaseName = $env.databaseName $attachedDatabaseConfigurationName = $env.attachedDatabaseConfigurationName $followerClusterName = $env.followerClusterName - $clusterResourceId= "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$followerClusterName" + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$followerClusterName" [array]$clusterFollowerDatabaseGet = Get-AzKustoClusterFollowerDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName $clusterFollowerDatabase = $clusterFollowerDatabaseGet[0] diff --git a/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json index 10f7cf61a72b..6cef7b1ae819 100644 --- a/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoClusterLanguageExtension+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/listLanguageExtensions?api-version=2020-02-15+1": { + "Get-AzKustoClusterLanguageExtension+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listLanguageExtensions?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/listLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listLanguageExtensions?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "0180171f-0350-4cc2-9ebe-ad054af67942" ], + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "8e362c36-111f-4e66-9716-743eeba06f9c" ], "CommandName": [ "Get-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Get-AzKustoClusterLanguageExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,25 +19,25 @@ "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": [ "c40485c8-3cc0-4269-8715-c8f121b2e3e2" ], - "x-ms-correlation-request-id": [ "a346146c-c927-4bc9-8de1-2f1450439791" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221052Z:a346146c-c927-4bc9-8de1-2f1450439791" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:10:51 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"languageExtensionName\":\"R\"},{\"languageExtensionName\":\"PYTHON\"}]}" + "Content": "{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Tests.ps1 b/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Tests.ps1 index 10e66f202f35..97db72f37c5d 100644 --- a/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoClusterLanguageExtension.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -19,6 +19,6 @@ Describe 'Get-AzKustoClusterLanguageExtension' { [array]$clusterLanguageExtensionGet = Get-AzKustoClusterLanguageExtension -ResourceGroupName $resourceGroupName -ClusterName $clusterName $clusterLanguageExtension = $clusterLanguageExtensionGet[0] $clusterLanguageExtensionGet.Count | Should -Be 2 - $clusterLanguageExtension.Name | Should -Be $env.langExt1 + $clusterLanguageExtension.Name | Should -Be $env.langExt2 } } diff --git a/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json index 7bbba31f7b90..ef6682e54fc0 100644 --- a/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoClusterPrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/principalAssignments?api-version=2020-02-15+1": { + "Get-AzKustoClusterPrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/principalAssignments?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/principalAssignments?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/principalAssignments?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "8c325256-3a44-4b9b-9b5b-1876902e47fe" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "36ba126b-5248-41b3-b222-cade2743f918" ], "CommandName": [ "Get-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoClusterPrincipalAssignment_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +19,39 @@ "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": [ "8da17cbe-3bbc-46c0-a55c-93a82b641bd0" ], - "x-ms-correlation-request-id": [ "1b111ded-d0d6-47af-b85e-936cf2c7fea1" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152626Z:1b111ded-d0d6-47af-b85e-936cf2c7fea1" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:26:25 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "566" ], + "Content-Length": [ "591" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "Get-AzKustoClusterPrincipalAssignment+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "268" ], - "x-ms-client-request-id": [ "e8aae3f2-2ee3-4f62-aeee-2f7976fecc6f" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "aed2f118-cb39-4eb7-978c-3317c6773312" ], "CommandName": [ "Get-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoClusterPrincipalAssignment_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,26 +60,26 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "c44d094f-0393-4533-b40b-0a8a76698577" ], - "x-ms-correlation-request-id": [ "9da70948-ac59-4c15-97b0-696c3381f095" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152627Z:9da70948-ac59-4c15-97b0-696c3381f095" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:26:26 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "564" ], + "Content-Length": [ "589" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/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/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-AzKustoClusterPrincipalAssignment.Tests.ps1 b/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Tests.ps1 index b49512b29622..547abf555d77 100644 --- a/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoClusterPrincipalAssignment.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } diff --git a/src/Kusto/test/Get-AzKustoClusterSku.Recording.json b/src/Kusto/test/Get-AzKustoClusterSku.Recording.json index c96c1e99ab14..affabdc78962 100644 --- a/src/Kusto/test/Get-AzKustoClusterSku.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterSku.Recording.json @@ -1,16 +1,16 @@ { - "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": [ "22" ], - "x-ms-client-request-id": [ "fe64aaf3-ff1d-43ed-acf5-d8aba24ad6fe" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "4f156658-4f1b-41a8-abd0-5556297d444d" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -20,35 +20,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-request-id": [ "cbbacbb0-19d7-407c-8426-d68db6a2a0e2" ], - "x-ms-correlation-request-id": [ "cbbacbb0-19d7-407c-8426-d68db6a2a0e2" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T214042Z:cbbacbb0-19d7-407c-8426-d68db6a2a0e2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-request-id": [ "8d792742-6310-4e3d-afd9-7dac44061c95" ], + "x-ms-correlation-request-id": [ "8d792742-6310-4e3d-afd9-7dac44061c95" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T084700Z:8d792742-6310-4e3d-afd9-7dac44061c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 21:40:41 GMT" ] + "Date": [ "Tue, 04 Aug 2020 08:46:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "78899" ], + "Content-Length": [ "62986" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"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_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\":\"Standard_D11_v2\",\"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_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\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"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_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_D11_v2\",\"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_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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"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_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\":\"Standard_D11_v2\",\"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_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\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D12_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"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_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_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_L4s\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"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\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_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_D11_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\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"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_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\":\"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_L4s\",\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"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_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\":\"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_L4s\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[],\"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_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_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_L4s\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[],\"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\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_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_D11_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\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D12_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"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_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\":\"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_L4s\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D12_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"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_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_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_L4s\",\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"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\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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\":\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L8\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L16\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D12_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"L4\",\"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_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\":\"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_L4s\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"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\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_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_D11_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\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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\":\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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\":\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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\":\"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\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D13_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D14_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"D11_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"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_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_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\":[\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/skus?api-version=2020-02-15+1": { + "Get-AzKustoClusterSku+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/skus?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/skus?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/skus?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "e98ebc7a-658e-4c42-8a85-730d323750ce" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "b989b6d5-6344-483e-9ee5-af4169d3a498" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -59,23 +59,23 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-request-id": [ "ac967c90-3674-49db-b973-d416bf867054" ], - "x-ms-correlation-request-id": [ "f8a1ae04-ddb9-4d21-84d4-7d68645a43df" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T214042Z:f8a1ae04-ddb9-4d21-84d4-7d68645a43df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-request-id": [ "69db5a0d-01b4-4595-b633-b83525d4d58b" ], + "x-ms-correlation-request-id": [ "6ddb28b5-d2c6-4307-ae13-d46c2ac66ddd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T084702Z:6ddb28b5-d2c6-4307-ae13-d46c2ac66ddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 21:40:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.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": { - "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 3fe1d02d5a5e..64578e1dcd06 100644 --- a/src/Kusto/test/Get-AzKustoClusterSku.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoClusterSku.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoClusterSku.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -14,7 +14,7 @@ while(-not $mockingPath) { Describe 'Get-AzKustoClusterSku' { It 'List' { [array]$clusterSku = Get-AzKustoClusterSku - $clusterSku.Count | Should -Be 413 + $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 1b22cd843845..5a12a9cf5554 100644 --- a/src/Kusto/test/Get-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Get-AzKustoDataConnection.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoDataConnection+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+1": { + "Get-AzKustoDataConnection+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnections?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnections?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "008ea65e-78e5-40eb-87b9-3f1557fa488d" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "482fb984-5cbf-418b-8773-1255b47fc474" ], "CommandName": [ "Get-AzKustoDataConnection" ], - "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], + "FullCommandName": [ "Get-AzKustoDataConnection_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,37 +22,36 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "9bc06244-78bf-4fea-9da5-444b78b06adc" ], - "x-ms-correlation-request-id": [ "d090a56e-adf5-4769-9dd0-d5a9ab07b412" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T083458Z:d090a56e-adf5-4769-9dd0-d5a9ab07b412" ], + "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": [ "Sun, 05 Apr 2020 08:34:58 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=ad966661f28345a7a82e0f5252ddeee3454342c1fc885732f7b3a5976e5da774;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.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": { - "Content-Length": [ "769" ], + "Content-Length": [ "2480" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}]}" } }, - "Get-AzKustoDataConnection+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+1": { + "Get-AzKustoDataConnection+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "ef552899-e1f9-43a6-be62-7d1312c041d2" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "11451dee-2aab-400f-95de-14b7a51f71f9" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -64,23 +63,23 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "1cf80091-53c5-429c-a367-464b12a9c93e" ], - "x-ms-correlation-request-id": [ "22f86f00-ad8c-4e4e-8a9b-f33cca0e315f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T083459Z:22f86f00-ad8c-4e4e-8a9b-f33cca0e315f" ], + "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": [ "Sun, 05 Apr 2020 08:34:59 GMT" ], + "Date": [ "Tue, 04 Aug 2020 08:47:36 GMT" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Set-Cookie": [ "ARRAffinity=f7346eb7f858da6fcd7c812185c78354cd9c373cd01aac1f84617587dc510a4d;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "769" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 b/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 index 40b5c6c625f1..bc4f1706aeec 100644 --- a/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoDataConnection.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -21,18 +21,20 @@ Describe 'Get-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName - $eventhubNS= $env.eventhubNSName - $eventhub= $env.eventhubName + $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" - [array]$dataConnectionGet = Get-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName - $dataConnectionCreated = $dataConnectionGet[0] - Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $tableName $tableMappingName $dataFormat $kind + [array]$dataConnectionGet = Get-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName + $dataConnectionGet.Count | Should -Be 3 + foreach ($dataConnection in $dataConnectionGet) { + if ($dataConnection.Name -eq $dataConnectionFullName) { + $dataConnectionCreated = $dataConnection + } + } + Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $kind } It 'Get' { @@ -42,16 +44,13 @@ Describe 'Get-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName - $eventhubNS= $env.eventhubNSName - $eventhub= $env.eventhubName + $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 54a0c81115c9..c949c5b76eae 100644 --- a/src/Kusto/test/Get-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/Get-AzKustoDatabase.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoDatabase+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Get-AzKustoDatabase+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "169" ], - "x-ms-client-request-id": [ "c6944de4-cc3b-49a1-958e-ee69b8edbf51" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "08b4f426-bc49-4634-aaa8-26dff35d3d0e" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,40 +19,40 @@ "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": [ "b0eece6b-7209-45be-b206-01d463b78d99" ], - "x-ms-correlation-request-id": [ "a89ed501-1931-472f-8bc6-8514db59e07b" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200401T144642Z:a89ed501-1931-472f-8bc6-8514db59e07b" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 01 Apr 2020 14:46:41 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "507" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Get-AzKustoDatabase+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "99e11abf-cca7-4f20-8a27-5e6961041b68" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "eb0ebe18-c569-49de-9e90-b9cd81766452" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -61,26 +61,26 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "7f74e5af-4706-4a35-9f17-95453b96b624" ], - "x-ms-correlation-request-id": [ "18bda563-c9f6-4e58-bb7b-dfa7846743d0" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200401T144759Z:18bda563-c9f6-4e58-bb7b-dfa7846743d0" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 01 Apr 2020 14:47:58 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "507" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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-AzKustoDatabase.Tests.ps1 b/src/Kusto/test/Get-AzKustoDatabase.Tests.ps1 index 9fccc33a4886..5149889a6e21 100644 --- a/src/Kusto/test/Get-AzKustoDatabase.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoDatabase.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoDatabase.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -15,8 +15,8 @@ while(-not $mockingPath) { Describe 'Get-AzKustoDatabase' { It 'List' { - $softDeletePeriodInDays = Get-Updated-Soft-Delete-Period-In-Days - $hotCachePeriodInDays = Get-Updated-Hot-Cache-Period-In-Days + $softDeletePeriodInDays = Get-Soft-Delete-Period-In-Days + $hotCachePeriodInDays = Get-Hot-Cache-Period-In-Days $databaseFullName = $env.clusterName + "/" + $env.databaseName [array]$databaseGet = Get-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $env.databaseName @@ -25,8 +25,8 @@ Describe 'Get-AzKustoDatabase' { } It 'Get' { - $softDeletePeriodInDays = Get-Updated-Soft-Delete-Period-In-Days - $hotCachePeriodInDays = Get-Updated-Hot-Cache-Period-In-Days + $softDeletePeriodInDays = Get-Soft-Delete-Period-In-Days + $hotCachePeriodInDays = Get-Hot-Cache-Period-In-Days $databaseFullName = $env.clusterName + "/" + $env.databaseName $databaseGetItem = Get-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $env.databaseName diff --git a/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json b/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json index 804ac784f253..f1cf47f4e3c5 100644 --- a/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json +++ b/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoDatabasePrincipal+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/listPrincipals?api-version=2020-02-15+1": { + "Get-AzKustoDatabasePrincipal+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/listPrincipals?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "100" ], - "x-ms-client-request-id": [ "923dfd7d-3468-48ef-be1f-5dbae2db06f4" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "69cb9624-f239-42d2-8180-4f274566e1f0" ], "CommandName": [ "Get-AzKustoDatabasePrincipal" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipal_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,25 +19,25 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "3d1c3cc5-07fb-4b96-83c7-d18072c869c8" ], - "x-ms-correlation-request-id": [ "c0366396-9595-428e-b643-23bb7b9d808a" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T224416Z:c0366396-9595-428e-b643-23bb7b9d808a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:44:16 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "661" ], + "Content-Length": [ "459" ], "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\"},{\"name\":\"lugoldbekusto\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=e60fe5c8-d6a5-4dee-b382-fb4502588dd0;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"tenantName\":\"Microsoft\"},{\"name\":\"Lucy Goldberg\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=4140ca90-d0db-4781-ab7a-099ece50e2fa;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"lugoldbe@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-AzKustoDatabasePrincipal.Tests.ps1 b/src/Kusto/test/Get-AzKustoDatabasePrincipal.Tests.ps1 index b8ac6d4ef6f2..00f8b4d4feaf 100644 --- a/src/Kusto/test/Get-AzKustoDatabasePrincipal.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoDatabasePrincipal.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoDatabasePrincipal.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -18,6 +18,6 @@ Describe 'Get-AzKustoDatabasePrincipal' { $databaseName = $env.databaseName [array]$databasePrincipals = Get-AzKustoDatabasePrincipal -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName - $databasePrincipals.Count | Should -Be 3 + $databasePrincipals.Count | Should -Be 2 } } diff --git a/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json index 96e2a339a3e9..88025cf90e7c 100644 --- a/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json +++ b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json @@ -1,16 +1,16 @@ { - "Get-AzKustoDatabasePrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/principalAssignments?api-version=2020-02-15+1": { + "Get-AzKustoDatabasePrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/principalAssignments?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/principalAssignments?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/principalAssignments?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "d5217841-254e-4b77-9a39-5f8f63ebf50f" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "edb14e08-0ace-4c8c-802a-7d626db4e148" ], "CommandName": [ "Get-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipalAssignment_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +19,39 @@ "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": [ "8bde59e0-8ed6-424d-bbca-057365daf364" ], - "x-ms-correlation-request-id": [ "0ec34957-68c4-4562-860c-227cfc0a64c5" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155544Z:0ec34957-68c4-4562-860c-227cfc0a64c5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:55:44 GMT" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1219" ], + "Content-Length": [ "1260" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/sdkpowershelldb/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/4a78a96a-7ecc-4313-9ac1-3cf292adf2e7\",\"name\":\"sdkpsclustereu/sdkpowershelldb/4a78a96a-7ecc-4313-9ac1-3cf292adf2e7\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"lugoldbe@microsoft.com\",\"role\":\"Admin\",\"principalType\":\"User\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"Lucy Goldberg\",\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "Get-AzKustoDatabasePrincipalAssignment+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "ff7185bb-3bdb-4cd4-81c1-30ac64892631" ], + "x-ms-unique-id": [ "175" ], + "x-ms-client-request-id": [ "aef22fe6-8880-4219-b5f9-a0fdb4994096" ], "CommandName": [ "Get-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipalAssignment_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,26 +60,26 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "deb30979-c183-4430-bc3e-6e7bade5f4fc" ], - "x-ms-correlation-request-id": [ "e7795284-09ca-4238-b02c-4e89bdc90b15" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155545Z:e7795284-09ca-4238-b02c-4e89bdc90b15" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:55:45 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:28:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "604" ], + "Content-Length": [ "635" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/sdkpowershelldb/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/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/Get-AzKustoDatabasePrincipalAssignment.Tests.ps1 b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Tests.ps1 index 5dadf64e7022..4ecce2175811 100644 --- a/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzKustoDatabasePrincipalAssignment.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -25,7 +25,11 @@ Describe 'Get-AzKustoDatabasePrincipalAssignment' { $principalAssignmentFullName = "$clusterName/$databaseName/$principalAssignmentName" [array]$principalAssignmentGet = Get-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName - $principalAssignment = $principalAssignmentGet[0] + foreach ($principalAssignmentItem in $principalAssignmentGet) { + if ($principalAssignmentItem.Name -eq $principalAssignmentFullName) { + $principalAssignment = $principalAssignmentItem + } + } Validate_PrincipalAssignment $principalAssignment $principalAssignmentFullName $principalId $principalType $role } diff --git a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json index bc6a7d1410fc..2ed046050f7f 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json @@ -1,21 +1,55 @@ { - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/dataConnectionValidation?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"sdkpsdataconnectionb4fgjh\"\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": { - "x-ms-unique-id": [ "27" ], - "x-ms-client-request-id": [ "a1cb1763-be71-4c4c-8352-c24f6e26b686" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], - "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "525" ] + "Content-Length": [ "430" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d874f725-1b71-4607-850a-e1bd09d064da" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "588317e6-e1b8-48c0-a794-08030449cef1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085242Z:588317e6-e1b8-48c0-a794-08030449cef1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:52:41 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "68e4e920-cb27-4bf0-8608-39fad9476a6b", "68e4e920-cb27-4bf0-8608-39fad9476a6b" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { @@ -23,42 +57,40 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-request-id": [ "daa1da4a-ee32-4e0c-99e7-0693ef260bb4" ], - "x-ms-correlation-request-id": [ "26678d26-6df1-48fa-bdde-62b58c59dd85" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202330Z:26678d26-6df1-48fa-bdde-62b58c59dd85" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "bd97e401-c7c8-40ab-bae2-16e38b829eff" ], + "x-ms-correlation-request-id": [ "74bde7c9-1794-4688-85ef-86a02c32142b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085313Z:74bde7c9-1794-4688-85ef-86a02c32142b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "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": [ "103" ], + "Content-Length": [ "447" ], "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/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]+DataExpandedEventGrid+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/dataConnectionValidation?api-version=2020-02-15+1": { + "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": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"sdkpsdataconnectionjc6fgi\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "06e32754-af9a-4335-943c-5e7beea25168" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], - "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "68e4e920-cb27-4bf0-8608-39fad9476a6b", "68e4e920-cb27-4bf0-8608-39fad9476a6b", "68e4e920-cb27-4bf0-8608-39fad9476a6b" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "676" ] } }, "Response": { @@ -66,15 +98,15 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-request-id": [ "befc129f-b917-4014-96b9-93723108707e" ], - "x-ms-correlation-request-id": [ "f1beea84-baca-4fcb-ad24-06a1f206d911" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202332Z:f1beea84-baca-4fcb-ad24-06a1f206d911" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "f0c4c536-6d80-4ab8-b5e6-2801371671c4" ], + "x-ms-correlation-request-id": [ "32af3b83-412d-4164-9c70-82e602c4b1ed" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085313Z:32af3b83-412d-4164-9c70-82e602c4b1ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:32 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "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": { @@ -82,26 +114,178 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/dataConnectionValidation?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"iothubforread\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"sdkpsdataconnection83dpzy\"\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": { - "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "7fd539f1-5152-44e8-b243-8171355e1c16" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], - "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "585" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "876d451b-e426-4eb4-ad28-dc2f3e318e26" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "7dc072de-3d2a-42c6-8c58-8069f9077d57" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085314Z:7dc072de-3d2a-42c6-8c58-8069f9077d57" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:14 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=4b8ede89fb13944eff9450222e60978f85f33ac60c86a0218535fcb40971ebd2;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "41337011-0439-4928-9c32-4532ed2c23a8", "41337011-0439-4928-9c32-4532ed2c23a8" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "f5b0d5cb-a6ef-4f00-b6a4-60c37f6099ca" ], + "x-ms-correlation-request-id": [ "55ff724a-48d9-40df-bbe7-6339c04859e3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085344Z:55ff724a-48d9-40df-bbe7-6339c04859e3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:44 GMT" ], + "Set-Cookie": [ "ARRAffinity=77ee763401c16af822f39e89c993c4c46db2cd634774c80e4236e79461b79395;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "509" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f06b590e-980a-4a54-84ce-b8a75f648cc2\",\"name\":\"f06b590e-980a-4a54-84ce-b8a75f648cc2\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:53:14.2474725Z\",\"endTime\":\"2020-08-04T08:53:16.4977188Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"},{\"ErrorMessage\":\"BlobStorageEventType {0} is not supported\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "41337011-0439-4928-9c32-4532ed2c23a8", "41337011-0439-4928-9c32-4532ed2c23a8", "41337011-0439-4928-9c32-4532ed2c23a8" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-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" ], + "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" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/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": [ "509" ] + "Content-Length": [ "412" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0f3213ef-6fa5-4fb4-a478-baa4746ecdb7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "63ce153a-d22c-4d43-9a3c-f54cfffd6681" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085345Z:63ce153a-d22c-4d43-9a3c-f54cfffd6681" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:45 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "7", "8" ], + "x-ms-client-request-id": [ "7c384158-741b-49c5-9186-e4a92de99c45", "7c384158-741b-49c5-9186-e4a92de99c45" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { @@ -109,15 +293,56 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-request-id": [ "18354fd1-d572-4681-bdfa-9948792df22c" ], - "x-ms-correlation-request-id": [ "4908d714-82f9-4aa7-8e33-02c4f3f5dd24" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202333Z:4908d714-82f9-4aa7-8e33-02c4f3f5dd24" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], + "x-ms-request-id": [ "6057af53-6b73-4b90-af43-728e6a81693e" ], + "x-ms-correlation-request-id": [ "90490b1b-0dfe-417b-8d30-179913a5dd04" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085415Z:90490b1b-0dfe-417b-8d30-179913a5dd04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:33 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Date": [ "Tue, 04 Aug 2020 08:54:15 GMT" ], + "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/85215b39-710d-4d32-9a3e-d8baf1e34afe\",\"name\":\"85215b39-710d-4d32-9a3e-d8baf1e34afe\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:53:45.3966282Z\",\"endTime\":\"2020-08-04T08:53:46.9904615Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "7", "8", "9" ], + "x-ms-client-request-id": [ "7c384158-741b-49c5-9186-e4a92de99c45", "7c384158-741b-49c5-9186-e4a92de99c45", "7c384158-741b-49c5-9186-e4a92de99c45" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-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" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:15 GMT" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { @@ -125,21 +350,21 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "7b79fa68-e78d-4aa3-ad20-c03cf0b626b8" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "8a0c7585-e37e-4f9e-b23b-d4d52b16b270" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -150,43 +375,118 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "797a8826-a71a-4e95-a1b0-85a2f92e379b" ], - "x-ms-correlation-request-id": [ "11833c5b-5413-4e0b-9d7b-13e9b17ee863" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202334Z:11833c5b-5413-4e0b-9d7b-13e9b17ee863" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "9dc6ed82-555a-4d37-a70b-9d560b3ad329" ], + "x-ms-correlation-request-id": [ "7d0a3f88-1ac7-4792-96f3-08dade5723a4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085416Z:7d0a3f88-1ac7-4792-96f3-08dade5723a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:34 GMT" ], + "Date": [ "Tue, 04 Aug 2020 08:54:15 GMT" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/dataConnectionValidation?api-version=2020-02-15+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"sdkpsdataconnectionb4fgjh\"\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": { - "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "5d08382e-4c0f-4999-80ca-8b50beb198a0" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], - "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "525" ] + "Content-Length": [ "430" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3070ebf7-e3ad-4f72-a427-51af1b47ce4e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "b0df40e0-f14f-4ecb-8e15-bab865fb41ad" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085416Z:b0df40e0-f14f-4ecb-8e15-bab865fb41ad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:16 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=3899a4c246ab409ce24157990cab89a709e4705f2b410d297e106a90486cd1f4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "11", "12" ], + "x-ms-client-request-id": [ "02df34ae-4a8b-4ca0-b365-e9e377558c94", "02df34ae-4a8b-4ca0-b365-e9e377558c94" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], + "x-ms-request-id": [ "75dc69ea-fd9c-4e33-a76e-eb0110017996" ], + "x-ms-correlation-request-id": [ "59f8c5e3-ed03-40e8-84ac-ad96996b9f5d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085447Z:59f8c5e3-ed03-40e8-84ac-ad96996b9f5d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:46 GMT" ], + "Set-Cookie": [ "ARRAffinity=3899a4c246ab409ce24157990cab89a709e4705f2b410d297e106a90486cd1f4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7040641a-f000-4aad-b23f-553517d97781\",\"name\":\"7040641a-f000-4aad-b23f-553517d97781\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:54:16.9122436Z\",\"endTime\":\"2020-08-04T08:54:19.5687913Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "11", "12", "13" ], + "x-ms-client-request-id": [ "02df34ae-4a8b-4ca0-b365-e9e377558c94", "02df34ae-4a8b-4ca0-b365-e9e377558c94", "02df34ae-4a8b-4ca0-b365-e9e377558c94" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { @@ -194,15 +494,15 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-request-id": [ "e076c18a-63b8-4bb5-887c-88e53522a8db" ], - "x-ms-correlation-request-id": [ "b66d1e4f-05bf-4bb7-b86e-1df80e3f91fa" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202336Z:b66d1e4f-05bf-4bb7-b86e-1df80e3f91fa" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:36 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "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": { @@ -210,21 +510,21 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "32" ], - "x-ms-client-request-id": [ "c804ed05-9759-4d8c-9956-22c86df91929" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "84a194a8-297d-4dbb-a30c-d56398ce7f2c" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -235,43 +535,77 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-request-id": [ "35e0525d-d7f9-47bb-b2f6-99974e1dda70" ], - "x-ms-correlation-request-id": [ "a2e92fd9-8e38-4470-a950-e0537209971b" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202337Z:a2e92fd9-8e38-4470-a950-e0537209971b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "395d85fb-a2da-4659-9c26-5b7642c44974" ], + "x-ms-correlation-request-id": [ "57b43f08-22ff-42c0-8126-c6a87ddc8ec9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085448Z:57b43f08-22ff-42c0-8126-c6a87ddc8ec9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:36 GMT" ], + "Date": [ "Tue, 04 Aug 2020 08:54:47 GMT" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Set-Cookie": [ "ARRAffinity=77ee763401c16af822f39e89c993c4c46db2cd634774c80e4236e79461b79395;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/dataConnectionValidation?api-version=2020-02-15+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"sdkpsdataconnectionjc6fgi\"\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": { - "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "c9e00a0c-1b08-4530-aede-48704061ad5e" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], - "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "676" ] + "Content-Length": [ "585" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "992723cf-6a8a-436e-85d2-c6f323e86fb6" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "421770d4-9b50-4ceb-88dc-02f3d46a3cbf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085449Z:421770d4-9b50-4ceb-88dc-02f3d46a3cbf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:48 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "15", "16" ], + "x-ms-client-request-id": [ "4a424c69-28c5-48a4-8898-9a735ed8ae4d", "4a424c69-28c5-48a4-8898-9a735ed8ae4d" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { @@ -279,37 +613,78 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-request-id": [ "8c1a6bf8-55f7-45c9-8e7e-9a47054f255b" ], - "x-ms-correlation-request-id": [ "20f37f83-4ede-421d-89cf-7f344b924cfb" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202339Z:20f37f83-4ede-421d-89cf-7f344b924cfb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], + "x-ms-request-id": [ "abd8c22a-b55c-4b68-bede-457c00d2b14a" ], + "x-ms-correlation-request-id": [ "dbb1d4f8-5546-4db6-a34c-a064abe5ecee" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085519Z:dbb1d4f8-5546-4db6-a34c-a064abe5ecee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:38 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "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": [ "103" ], + "Content-Length": [ "509" ], "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/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]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?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/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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "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": [ "34" ], - "x-ms-client-request-id": [ "ce1bfb37-14c8-4219-901c-9c4e6bf73e87" ], + "x-ms-unique-id": [ "15", "16", "17" ], + "x-ms-client-request-id": [ "4a424c69-28c5-48a4-8898-9a735ed8ae4d", "4a424c69-28c5-48a4-8898-9a735ed8ae4d", "4a424c69-28c5-48a4-8898-9a735ed8ae4d" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-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" ], + "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" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "676e6aeb-a8e1-4bb1-8ade-c87d57f390b0" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -320,43 +695,118 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], - "x-ms-request-id": [ "fa0139c9-402d-47a6-8233-fb82b77e86e0" ], - "x-ms-correlation-request-id": [ "50f115e2-e8d3-447a-a365-a3876250c107" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202339Z:50f115e2-e8d3-447a-a365-a3876250c107" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "9ec87e1d-3e92-4e81-b72c-03fe4a98d0ba" ], + "x-ms-correlation-request-id": [ "1e5c9888-5caf-4166-b0d2-2d6f219efa7c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085520Z:1e5c9888-5caf-4166-b0d2-2d6f219efa7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:39 GMT" ], + "Date": [ "Tue, 04 Aug 2020 08:55:19 GMT" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/dataConnectionValidation?api-version=2020-02-15+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"iothubforread\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"sdkpsdataconnection83dpzy\"\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": { - "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "2b435c78-c0a8-4cca-bb29-7ade8ef9473a" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], - "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "509" ] + "Content-Length": [ "412" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "265309f0-c625-44b4-b27f-615e048cd5de" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "3cbbf318-edaa-44bf-b0a2-82f8a0a48208" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085520Z:3cbbf318-edaa-44bf-b0a2-82f8a0a48208" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:20 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=f7346eb7f858da6fcd7c812185c78354cd9c373cd01aac1f84617587dc510a4d;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "19", "20" ], + "x-ms-client-request-id": [ "f43ecf37-33d6-40b2-a158-9468e546d5d3", "f43ecf37-33d6-40b2-a158-9468e546d5d3" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "8d04828e-772e-4fc8-8d9a-6a8bfb29f494" ], + "x-ms-correlation-request-id": [ "3f8c04aa-902c-4fc3-aef9-5b7567f0237c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085550Z:3f8c04aa-902c-4fc3-aef9-5b7567f0237c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:50 GMT" ], + "Set-Cookie": [ "ARRAffinity=67658d3126ddf9428e4e2f36f09e574385ff742ffab2b8dcad942ecc1f8fdb67;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/a8bd2228-0178-446b-b1b8-264ea2f65f54\",\"name\":\"a8bd2228-0178-446b-b1b8-264ea2f65f54\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:55:20.6505866Z\",\"endTime\":\"2020-08-04T08:55:22.6523747Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "19", "20", "21" ], + "x-ms-client-request-id": [ "f43ecf37-33d6-40b2-a158-9468e546d5d3", "f43ecf37-33d6-40b2-a158-9468e546d5d3", "f43ecf37-33d6-40b2-a158-9468e546d5d3" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { @@ -364,15 +814,15 @@ "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-request-id": [ "75cddb32-dab9-46fe-bdac-85fc04f90bcc" ], - "x-ms-correlation-request-id": [ "fc36cc33-c1a6-4b13-a3e3-809d2b4e26d2" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T202340Z:fc36cc33-c1a6-4b13-a3e3-809d2b4e26d2" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 20:23:40 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "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": { @@ -380,7 +830,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 index 10f8b120253d..e4d7e972b6af 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 @@ -20,18 +20,13 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $rstr1 = "b4fgjh" - $dataConnectionName = $env.dataConnectionName + $rstr1 + $dataConnectionName = $env.dataConnectionName + $env.rstr4 $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" } | Should -Not -Throw } It 'DataExpandedEventGrid' { @@ -40,20 +35,15 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $rstr2 = "jc6fgi" - $dataConnectionName = $env.dataConnectionName + $rstr2 + $dataConnectionName = $env.dataConnectionName + $env.rstr5 $eventhubNS = $env.eventhubNSNameForEventGrid $eventhub = $env.eventhubNameForEventGrid $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $storageAccountName = $env.storageName $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventGrid" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' } | Should -Not -Throw } It 'DataExpandedIotHub' { @@ -62,18 +52,13 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $rstr3 = "83dpzy" - $dataConnectionName = $env.dataConnectionName + $rstr3 + $dataConnectionName = $env.dataConnectionName + $env.rstr6 $iothubName = $env.iothubName $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "IotHub" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' } | Should -Not -Throw } It 'DataViaIdentityExpandedEventHub' { @@ -82,19 +67,14 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $rstr1 = "b4fgjh" - $dataConnectionName = $env.dataConnectionName + $rstr1 + $dataConnectionName = $env.dataConnectionName + $env.rstr4 $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName - $validationResult = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" } | Should -Not -Throw } It 'DataViaIdentityExpandedEventGrid' { @@ -103,21 +83,16 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $rstr2 = "jc6fgi" - $dataConnectionName = $env.dataConnectionName + $rstr2 + $dataConnectionName = $env.dataConnectionName + $env.rstr5 $eventhubNS = $env.eventhubNSNameForEventGrid $eventhub = $env.eventhubNameForEventGrid $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $storageAccountName = $env.storageName $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventGrid" $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName - $validationResult = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' } | Should -Not -Throw } It 'DataViaIdentityExpandedIotHub' { @@ -126,18 +101,13 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $rstr3 = "83dpzy" - $dataConnectionName = $env.dataConnectionName + $rstr3 + $dataConnectionName = $env.dataConnectionName + $env.rstr6 $iothubName = $env.iothubName $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "IotHub" $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName - $validationResult = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' } | Should -Not -Throw } } diff --git a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json index 61db66c7d1f9..442acfc348af 100644 --- a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json @@ -1,59 +1,292 @@ { -"Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/detachFollowerDatabases?api-version=2020-02-15+1": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/detachFollowerDatabases?api-version=2020-02-15", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"sdkpowershellfconfig\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf\"\r\n}", + "Method": "PUT", + "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": { - "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "8102ae70-c238-4122-a3d0-c883ac71a6e6" ], - "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase" ], - "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "53" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/82ada4f4-1aa0-457a-8305-6b4b0def0126?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/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": { "Content-Type": [ "application/json" ], - "Content-Length": [ "228" ] + "Content-Length": [ "312" ] } }, "Response": { - "StatusCode": 202, + "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "27ad314c-1c74-47b5-813e-b1ef22982013" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "9c79a802-dd0e-4d27-9fa6-fd435873a037" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T145503Z:9c79a802-dd0e-4d27-9fa6-fd435873a037" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/58774ed6-08d8-4589-96be-36fdf9bcc7bd?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 14:55:02 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "c1621ff4-d04d-4678-b040-9b70117ff576" ], + "x-ms-request-id": [ "dece4157-5e7a-4013-9fe2-f8e29007bedc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "Sun, 02 Aug 2020 23:34:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "227" ] + } + }, + "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/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": [ "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": [ "Sun, 02 Aug 2020 23:34:55 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?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/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/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "8", "9" ], - "x-ms-client-request-id": [ "8102ae70-c238-4122-a3d0-c883ac71a6e6", "8102ae70-c238-4122-a3d0-c883ac71a6e6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,39 +295,39 @@ "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": [ "e2d3546a-9eb3-4181-8165-63e40375a033" ], - "x-ms-correlation-request-id": [ "0769d431-a808-4eea-a52f-baced6480ac3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T145533Z:0769d431-a808-4eea-a52f-baced6480ac3" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 14:55:32 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:35:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92e0673c-d2a6-4ba1-ab36-625859aabafc\",\"name\":\"92e0673c-d2a6-4ba1-ab36-625859aabafc\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T14:55:03.0678857Z\",\"endTime\":\"2020-04-05T14:55:05.3021632Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"00ba9113-e1a5-4c45-a098-e0862acbf8fb\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/141e3daa-3da9-41b6-b487-89ad2972a64e\",\"name\":\"141e3daa-3da9-41b6-b487-89ad2972a64e\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:34:55.6613264Z\",\"endTime\":\"2020-08-02T23:34:58.5834461Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"b3ad2aca-67fb-4a4b-89f9-9c0fa98ea8e9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "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/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "8", "9", "10" ], - "x-ms-client-request-id": [ "8102ae70-c238-4122-a3d0-c883ac71a6e6", "8102ae70-c238-4122-a3d0-c883ac71a6e6", "8102ae70-c238-4122-a3d0-c883ac71a6e6" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -103,37 +336,398 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6f701aaa-6a4b-459a-91ae-abcf51f3c789" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "e0cd5fa4-d7da-4f2f-ac81-08bf46d6c17b" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T145533Z:e0cd5fa4-d7da-4f2f-ac81-08bf46d6c17b" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:35:26 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "7fc33439-70eb-4e4f-b7fc-b134bfe60451" ], + "CommandName": [ "Remove-AzKustoDatabase" ], + "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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": [ "Sun, 02 Aug 2020 23:35:26 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 14:55:32 GMT" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:35:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "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/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/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/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:35:56 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "53" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4a1773c9-ce3b-4765-87c3-5501580792f8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "7499b9e3-7cd9-4702-bb24-ab21f106a689" ], + "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" ], + "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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:36:27 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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "312" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/073a86bf-67e5-4642-b969-aa49e3e7efc5?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "eba53dc7-4f7f-4e81-8f68-75341275253e" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -142,83 +736,76 @@ "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": [ "483d99b1-0f3f-4559-8b3b-090630b3c58f" ], - "x-ms-correlation-request-id": [ "bbd6ae6b-ee60-4ad1-b5c1-f850bb7771c5" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T152259Z:bbd6ae6b-ee60-4ad1-b5c1-f850bb7771c5" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:22:59 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:37:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/detachFollowerDatabases?api-version=2020-02-15+2": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/detachFollowerDatabases?api-version=2020-02-15", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"sdkpowershellfconfig\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf\"\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": { - "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "8102ae70-c238-4122-a3d0-c883ac71a6e6" ], - "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase" ], - "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "228" ] + "Content-Length": [ "227" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "27ad314c-1c74-47b5-813e-b1ef22982013" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "9c79a802-dd0e-4d27-9fa6-fd435873a037" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T145503Z:9c79a802-dd0e-4d27-9fa6-fd435873a037" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 14:55:02 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:37:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15+3": { + "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/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "8", "9" ], - "x-ms-client-request-id": [ "8102ae70-c238-4122-a3d0-c883ac71a6e6", "8102ae70-c238-4122-a3d0-c883ac71a6e6" ], + "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_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], + "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -227,39 +814,39 @@ "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": [ "e2d3546a-9eb3-4181-8165-63e40375a033" ], - "x-ms-correlation-request-id": [ "0769d431-a808-4eea-a52f-baced6480ac3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T145533Z:0769d431-a808-4eea-a52f-baced6480ac3" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 14:55:32 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:37:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92e0673c-d2a6-4ba1-ab36-625859aabafc\",\"name\":\"92e0673c-d2a6-4ba1-ab36-625859aabafc\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T14:55:03.0678857Z\",\"endTime\":\"2020-04-05T14:55:05.3021632Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"00ba9113-e1a5-4c45-a098-e0862acbf8fb\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/aafe8396-84ca-4330-9ae2-dd2eb29c8913\",\"name\":\"aafe8396-84ca-4330-9ae2-dd2eb29c8913\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:37:00.5743966Z\",\"endTime\":\"2020-08-02T23:37:04.6840864Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"66e216c7-9f47-4728-b868-9cd7bce592a4\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15\u0026operationResultResponseType=Location+4": { + "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/92e0673c-d2a6-4ba1-ab36-625859aabafc?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "8", "9", "10" ], - "x-ms-client-request-id": [ "8102ae70-c238-4122-a3d0-c883ac71a6e6", "8102ae70-c238-4122-a3d0-c883ac71a6e6", "8102ae70-c238-4122-a3d0-c883ac71a6e6" ], + "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_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], + "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -268,22 +855,143 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6f701aaa-6a4b-459a-91ae-abcf51f3c789" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "e0cd5fa4-d7da-4f2f-ac81-08bf46d6c17b" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T145533Z:e0cd5fa4-d7da-4f2f-ac81-08bf46d6c17b" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:37:30 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "28aaa96f-9cd3-4f5a-8da9-056d742d5f13" ], + "CommandName": [ "Remove-AzKustoDatabase" ], + "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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": [ "Sun, 02 Aug 2020 23:37:30 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 14:55:32 GMT" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:38:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "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/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/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/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:38:01 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } } diff --git a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Tests.ps1 b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Tests.ps1 index d7f1ec89448f..e50677af902a 100644 --- a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Tests.ps1 +++ b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -16,24 +16,38 @@ while(-not $mockingPath) { Describe 'Invoke-AzKustoDetachClusterFollowerDatabase' { It 'DetachExpanded' { $subscriptionId = $env.SubscriptionId + $location = $env.location $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - $attachedDatabaseConfigurationName = $env.attachedDatabaseConfigurationName + $attachedDatabaseConfigurationName = "testdbconf" + $env.rstr4 $followerClusterName = $env.followerClusterName - $clusterResourceId= "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$followerClusterName" - - { Invoke-AzKustoDetachClusterFollowerDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -AttachedDatabaseConfigurationName $attachedDatabaseConfigurationName -ClusterResourceId $clusterResourceId } | Should -Not -Throw + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + $followerClusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$followerClusterName" + $databaseName = "testdatabase" + $env.rstr4 + $defaultPrincipalsModificationKind = $env.defaultPrincipalsModificationKind + + New-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName -Kind ReadWrite -Location $location + New-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName -Name $attachedDatabaseConfigurationName -Location $location -ClusterResourceId $clusterResourceId -DatabaseName $databaseName -DefaultPrincipalsModificationKind $defaultPrincipalsModificationKind + { Invoke-AzKustoDetachClusterFollowerDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -AttachedDatabaseConfigurationName $attachedDatabaseConfigurationName -ClusterResourceId $followerClusterResourceId } | Should -Not -Throw + Remove-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName } It 'DetachViaIdentityExpanded' { $subscriptionId = $env.SubscriptionId + $location = $env.location $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - $attachedDatabaseConfigurationName = $env.attachedDatabaseConfigurationName + $attachedDatabaseConfigurationName = "testdbconf" + $env.rstr5 $followerClusterName = $env.followerClusterName - $clusterResourceId= "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$followerClusterName" - + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + $followerClusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$followerClusterName" + $databaseName = "testdatabase" + $env.rstr5 + $defaultPrincipalsModificationKind = $env.defaultPrincipalsModificationKind + + New-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName -Kind ReadWrite -Location $location + New-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName -Name $attachedDatabaseConfigurationName -Location $location -ClusterResourceId $clusterResourceId -DatabaseName $databaseName -DefaultPrincipalsModificationKind $defaultPrincipalsModificationKind $cluster = Get-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName - { Invoke-AzKustoDetachClusterFollowerDatabase -InputObject $cluster -AttachedDatabaseConfigurationName $attachedDatabaseConfigurationName -ClusterResourceId $clusterResourceId } | Should -Not -Throw + { Invoke-AzKustoDetachClusterFollowerDatabase -InputObject $cluster -AttachedDatabaseConfigurationName $attachedDatabaseConfigurationName -ClusterResourceId $followerClusterResourceId } | Should -Not -Throw + Remove-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName } } diff --git a/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json b/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json index 083d6be9bb98..967d1dfc9955 100644 --- a/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json @@ -1,16 +1,16 @@ { -"Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/diagnoseVirtualNetwork?api-version=2020-02-15+1": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/diagnoseVirtualNetwork?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +19,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "10220ac4-8e6a-4b80-97eb-d38b10cbb899" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "363c51c4-ab11-43b9-91fa-64845076011e" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153556Z:363c51c4-ab11-43b9-91fa-64845076011e" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:35:56 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:38:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+2": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +60,39 @@ "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": [ "3a5aee99-c02d-4e94-bef2-a944bf44253e" ], - "x-ms-correlation-request-id": [ "b85b98bf-0ddc-4e80-abc4-a7f406a4e9fa" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153627Z:b85b98bf-0ddc-4e80-abc4-a7f406a4e9fa" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:36:26 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+3": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,39 +101,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e5410110-37e0-4741-bdb6-dd27d171e670" ], - "x-ms-request-id": [ "1981ae6a-6373-4a3f-bbcf-dec52dc3f78f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153657Z:e5410110-37e0-4741-bdb6-dd27d171e670" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "272" ], + "x-ms-request-id": [ "dfe7bb2e-2cbb-45b1-8ca9-327bc84b7ca8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:36:56 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+4": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -142,39 +142,39 @@ "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": [ "c80c3709-3e52-474a-b608-e021ba334d8c" ], - "x-ms-correlation-request-id": [ "62043a97-971a-46fd-92b1-d123558bc07b" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153728Z:62043a97-971a-46fd-92b1-d123558bc07b" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:37:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+5": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -183,39 +183,39 @@ "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": [ "b36cb39c-ccd1-43c6-9cde-2bc3049a5db2" ], - "x-ms-correlation-request-id": [ "139e9a44-2c33-447c-8802-7a6be62286b4" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153758Z:139e9a44-2c33-447c-8802-7a6be62286b4" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:37:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+6": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -224,39 +224,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a06fd3ff-90b1-4610-b445-dd7be09d156a" ], - "x-ms-request-id": [ "0ea1c8da-e39e-4ac2-8e1f-e65bf35bd58f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153828Z:a06fd3ff-90b1-4610-b445-dd7be09d156a" ], + "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-routing-request-id": [ "NORTHEUROPE:20200802T234033Z:9a054bf1-dfea-402a-a5e2-a7b6ac6c196c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:38:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=ed41ca322a49669b612bcebf273fd24041177ae99ea92e4ec42dded8575d2518;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+7": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -265,39 +265,39 @@ "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": [ "01090848-567f-422b-aece-9a004fc6c86a" ], - "x-ms-correlation-request-id": [ "b4624b2a-8ccd-436c-bffe-630ddd3d5385" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153859Z:b4624b2a-8ccd-436c-bffe-630ddd3d5385" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:38:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=ed41ca322a49669b612bcebf273fd24041177ae99ea92e4ec42dded8575d2518;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+8": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -306,39 +306,39 @@ "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": [ "c2d315a4-efdf-4c1a-8c29-b01ca503ed17" ], - "x-ms-correlation-request-id": [ "5fb7a660-919a-491e-bf14-641dd64dae0d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153929Z:5fb7a660-919a-491e-bf14-641dd64dae0d" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:39:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+9": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -347,39 +347,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ce5119d1-146f-4470-9389-e347bc0ca219" ], - "x-ms-request-id": [ "ac6cdfea-1af3-4172-9267-7c4ce3309bb5" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153959Z:ce5119d1-146f-4470-9389-e347bc0ca219" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:39:59 GMT" ], - "Set-Cookie": [ "ARRAffinity=de41295b4360a9ab17ddc0530c031200492ec580fe649e0e2606c200e0b6cb04;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+10": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26", "27" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -388,39 +388,39 @@ "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": [ "eb80808a-abe2-4817-a5e5-f8a3161bf4c3" ], - "x-ms-correlation-request-id": [ "0d7be56e-0eb7-4f06-bdcd-08c02770fa11" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T154030Z:0d7be56e-0eb7-4f06-bdcd-08c02770fa11" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:40:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=ed41ca322a49669b612bcebf273fd24041177ae99ea92e4ec42dded8575d2518;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+11": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -429,39 +429,39 @@ "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": [ "3678ea37-f98f-40b6-b34b-fdec0e4f111a" ], - "x-ms-correlation-request-id": [ "a6068733-3c47-41ed-ab5a-c2bc09ab311f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T154100Z:a6068733-3c47-41ed-ab5a-c2bc09ab311f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:41:00 GMT" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "360" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:40:57.3353554Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15\u0026operationResultResponseType=Location+12": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14\u0026operationResultResponseType=Location+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -470,18 +470,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": [ "1c07e6d7-1f19-4db7-ab82-9035d6b4aa50" ], - "x-ms-correlation-request-id": [ "77302b87-567d-4998-a2dc-536efac9fcb3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T154101Z:77302b87-567d-4998-a2dc-536efac9fcb3" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:41:01 GMT" ], - "Set-Cookie": [ "ARRAffinity=de41295b4360a9ab17ddc0530c031200492ec580fe649e0e2606c200e0b6cb04;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "15" ], @@ -491,18 +491,18 @@ "Content": "{\"Findings\":[]}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "9e5e1560-732f-435d-8310-8e43aa764fd3" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "71778592-b071-43c8-bf40-2ed7b4a7082c" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -511,40 +511,40 @@ "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": [ "1ea90305-b1b0-4ea8-8879-03020ed9e68f" ], - "x-ms-correlation-request-id": [ "db9a40e7-cc15-48f1-9101-568e6e3fd8d8" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T154840Z:db9a40e7-cc15-48f1-9101-568e6e3fd8d8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:48:40 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/diagnoseVirtualNetwork?api-version=2020-02-15+2": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/diagnoseVirtualNetwork?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], - "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -553,39 +553,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "10220ac4-8e6a-4b80-97eb-d38b10cbb899" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "363c51c4-ab11-43b9-91fa-64845076011e" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153556Z:363c51c4-ab11-43b9-91fa-64845076011e" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:35:56 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:43:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+3": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -594,39 +594,39 @@ "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": [ "3a5aee99-c02d-4e94-bef2-a944bf44253e" ], - "x-ms-correlation-request-id": [ "b85b98bf-0ddc-4e80-abc4-a7f406a4e9fa" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153627Z:b85b98bf-0ddc-4e80-abc4-a7f406a4e9fa" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:36:26 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+4": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -635,39 +635,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e5410110-37e0-4741-bdb6-dd27d171e670" ], - "x-ms-request-id": [ "1981ae6a-6373-4a3f-bbcf-dec52dc3f78f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153657Z:e5410110-37e0-4741-bdb6-dd27d171e670" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:36:56 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+5": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "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" ], + "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": { @@ -676,39 +676,39 @@ "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": [ "c80c3709-3e52-474a-b608-e021ba334d8c" ], - "x-ms-correlation-request-id": [ "62043a97-971a-46fd-92b1-d123558bc07b" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153728Z:62043a97-971a-46fd-92b1-d123558bc07b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], + "x-ms-request-id": [ "da6b4657-3cc8-4529-9a3f-a9f2779df438" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:37:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+6": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -717,39 +717,39 @@ "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": [ "b36cb39c-ccd1-43c6-9cde-2bc3049a5db2" ], - "x-ms-correlation-request-id": [ "139e9a44-2c33-447c-8802-7a6be62286b4" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153758Z:139e9a44-2c33-447c-8802-7a6be62286b4" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:37:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+7": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -758,39 +758,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a06fd3ff-90b1-4610-b445-dd7be09d156a" ], - "x-ms-request-id": [ "0ea1c8da-e39e-4ac2-8e1f-e65bf35bd58f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153828Z:a06fd3ff-90b1-4610-b445-dd7be09d156a" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:38:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=ed41ca322a49669b612bcebf273fd24041177ae99ea92e4ec42dded8575d2518;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+8": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -799,39 +799,39 @@ "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": [ "01090848-567f-422b-aece-9a004fc6c86a" ], - "x-ms-correlation-request-id": [ "b4624b2a-8ccd-436c-bffe-630ddd3d5385" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153859Z:b4624b2a-8ccd-436c-bffe-630ddd3d5385" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:38:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=ed41ca322a49669b612bcebf273fd24041177ae99ea92e4ec42dded8575d2518;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+9": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -840,39 +840,39 @@ "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": [ "c2d315a4-efdf-4c1a-8c29-b01ca503ed17" ], - "x-ms-correlation-request-id": [ "5fb7a660-919a-491e-bf14-641dd64dae0d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153929Z:5fb7a660-919a-491e-bf14-641dd64dae0d" ], + "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-routing-request-id": [ "NORTHEUROPE:20200802T234637Z:a998f258-ee41-49bf-b090-2579299b87a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:39:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+10": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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,39 +881,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ce5119d1-146f-4470-9389-e347bc0ca219" ], - "x-ms-request-id": [ "ac6cdfea-1af3-4172-9267-7c4ce3309bb5" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T153959Z:ce5119d1-146f-4470-9389-e347bc0ca219" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:39:59 GMT" ], - "Set-Cookie": [ "ARRAffinity=de41295b4360a9ab17ddc0530c031200492ec580fe649e0e2606c200e0b6cb04;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+11": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26", "27" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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,39 +922,39 @@ "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": [ "eb80808a-abe2-4817-a5e5-f8a3161bf4c3" ], - "x-ms-correlation-request-id": [ "0d7be56e-0eb7-4f06-bdcd-08c02770fa11" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T154030Z:0d7be56e-0eb7-4f06-bdcd-08c02770fa11" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:40:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=ed41ca322a49669b612bcebf273fd24041177ae99ea92e4ec42dded8575d2518;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Running\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:35:56.5895568Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15+12": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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,39 +963,39 @@ "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": [ "3678ea37-f98f-40b6-b34b-fdec0e4f111a" ], - "x-ms-correlation-request-id": [ "a6068733-3c47-41ed-ab5a-c2bc09ab311f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T154100Z:a6068733-3c47-41ed-ab5a-c2bc09ab311f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:41:00 GMT" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "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/5aef1392-1e51-4445-b228-564d5e2fec14\",\"name\":\"5aef1392-1e51-4445-b228-564d5e2fec14\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T15:35:56.5895568Z\",\"endTime\":\"2020-04-05T15:40:57.3353554Z\",\"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/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15\u0026operationResultResponseType=Location+13": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14\u0026operationResultResponseType=Location+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5aef1392-1e51-4445-b228-564d5e2fec14?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29" ], - "x-ms-client-request-id": [ "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2", "c86f0271-521a-42b9-b9d6-f1917fb997b2" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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,18 +1004,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": [ "1c07e6d7-1f19-4db7-ab82-9035d6b4aa50" ], - "x-ms-correlation-request-id": [ "77302b87-567d-4998-a2dc-536efac9fcb3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T154101Z:77302b87-567d-4998-a2dc-536efac9fcb3" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 15:41:01 GMT" ], - "Set-Cookie": [ "ARRAffinity=de41295b4360a9ab17ddc0530c031200492ec580fe649e0e2606c200e0b6cb04;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:48:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "15" ], diff --git a/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Tests.ps1 b/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Tests.ps1 index a23931ce0d7f..5f1b9d9331eb 100644 --- a/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Tests.ps1 +++ b/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } diff --git a/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json index 24152206c779..afde832a1ce0 100644 --- a/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json +++ b/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json @@ -1,60 +1,173 @@ { - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15+1": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\r\n \"databaseName\": \"sdkpowershelldb\",\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/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { - "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "4bc7987b-78d1-47a6-94e5-6805e97d2cdc" ], - "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration" ], - "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "306" ] + "Content-Length": [ "53" ] } }, "Response": { "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/8120d52f-249c-402c-aed8-495bfe110a62?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], - "x-ms-request-id": [ "1752fe9f-547a-4365-a33a-5150fc551c93" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/eb0d72ab-ccec-4c3c-bbca-37126438f228?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "fb0e1b8c-28f8-4284-9611-364b0c7af67a" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T162918Z:fb0e1b8c-28f8-4284-9611-364b0c7af67a" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], - "Date": [ "Sun, 05 Apr 2020 16:29:17 GMT" ], + "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:48:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "618" ], + "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig\",\"name\":\"sdkpsclustereuf/sdkpowershellfconfig\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"databaseName\":\"sdkpowershelldb\",\"defaultPrincipalsModificationKind\":\"Union\",\"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\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/eb0d72ab-ccec-4c3c-bbca-37126438f228?api-version=2020-02-15+2": { + "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/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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "312" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/eb0d72ab-ccec-4c3c-bbca-37126438f228?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3df31102-0d78-4790-ac9d-230ca249af78?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "4", "5" ], - "x-ms-client-request-id": [ "4bc7987b-78d1-47a6-94e5-6805e97d2cdc", "4bc7987b-78d1-47a6-94e5-6805e97d2cdc" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,39 +176,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "71b93d1f-00df-43bf-bcd0-5d182f14eb8a" ], - "x-ms-request-id": [ "d9873851-7adf-4ea1-afd3-e24d9aa85a00" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T162948Z:71b93d1f-00df-43bf-bcd0-5d182f14eb8a" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 16:29:47 GMT" ], - "Set-Cookie": [ "ARRAffinity=de41295b4360a9ab17ddc0530c031200492ec580fe649e0e2606c200e0b6cb04;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:49:11 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/eb0d72ab-ccec-4c3c-bbca-37126438f228\",\"name\":\"eb0d72ab-ccec-4c3c-bbca-37126438f228\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T16:29:18.4895891Z\",\"endTime\":\"2020-04-05T16:29:20.5208726Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"460c996a-e46a-4d7b-b19f-00ca78926820\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3df31102-0d78-4790-ac9d-230ca249af78\",\"name\":\"3df31102-0d78-4790-ac9d-230ca249af78\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:48:41.2646308Z\",\"endTime\":\"2020-08-02T23:48:43.9523579Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"eecf26fa-7061-4a6f-900a-c3acfcd7dbbc\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15+3": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "4", "5", "6" ], - "x-ms-client-request-id": [ "4bc7987b-78d1-47a6-94e5-6805e97d2cdc", "4bc7987b-78d1-47a6-94e5-6805e97d2cdc", "4bc7987b-78d1-47a6-94e5-6805e97d2cdc" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,26 +217,263 @@ "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": [ "240c0d32-44e1-4890-befa-82bd2f2f8e89" ], - "x-ms-correlation-request-id": [ "e5eab628-4569-4673-bfb7-738b37740a10" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T162949Z:e5eab628-4569-4673-bfb7-738b37740a10" ], + "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": [ "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": [ "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/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/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/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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "227" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 16:29:48 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Sun, 02 Aug 2020 23:49:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "673" ], + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:49:42 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "6dc9db64-3cd7-4176-9831-73e437335716" ], + "CommandName": [ "Remove-AzKustoDatabase" ], + "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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": [ "Sun, 02 Aug 2020 23:49:42 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "3b15b14d-c289-4af8-a518-f37aacfd09b9" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Sun, 02 Aug 2020 23:50:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig\",\"name\":\"sdkpsclustereuf/sdkpowershellfconfig\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"databaseName\":\"sdkpowershelldb\",\"attachedDatabaseNames\":[\"sdkpowershelldb\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/285890a4-5f39-4c15-af4f-bc26496fd3bd\",\"name\":\"285890a4-5f39-4c15-af4f-bc26496fd3bd\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:49:43.267229Z\",\"endTime\":\"2020-08-02T23:49:46.1268927Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"3f7c9596-979b-4fcc-9755-6bf039066f54\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Sun, 02 Aug 2020 23:50:13 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Tests.ps1 b/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Tests.ps1 index fd6346c8d799..01f40b82c92b 100644 --- a/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Tests.ps1 +++ b/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzKustoAttachedDatabaseConfiguration.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -19,14 +19,18 @@ Describe 'New-AzKustoAttachedDatabaseConfiguration' { $location = $env.location $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - $databaseName = $env.databaseName - $attachedDatabaseConfigurationName = $env.attachedDatabaseConfigurationName + $databaseName = "testdatabase" + $env.rstr4 + $attachedDatabaseConfigurationName = "testdbconf" + $env.rstr4 $followerClusterName = $env.followerClusterName $defaultPrincipalsModificationKind = $env.defaultPrincipalsModificationKind - $clusterResourceId= "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + $followerClusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$followerClusterName" $attachedDatabaseConfigurationFullName = $followerClusterName + "/" + $attachedDatabaseConfigurationName + New-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName -Kind ReadWrite -Location $location $attachedDatabaseConfigurationCreated = New-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName -Name $attachedDatabaseConfigurationName -Location $location -ClusterResourceId $clusterResourceId -DatabaseName $databaseName -DefaultPrincipalsModificationKind $defaultPrincipalsModificationKind Validate_AttachedDatabaseConfiguration $attachedDatabaseConfigurationCreated $attachedDatabaseConfigurationFullName $location $clusterResourceId $databaseName $defaultPrincipalsModificationKind + { Invoke-AzKustoDetachClusterFollowerDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -AttachedDatabaseConfigurationName $attachedDatabaseConfigurationName -ClusterResourceId $followerClusterResourceId } | Should -Not -Throw + Remove-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName } } diff --git a/src/Kusto/test/New-AzKustoCluster.Recording.json b/src/Kusto/test/New-AzKustoCluster.Recording.json index 06d2b236f166..0b07251e1f17 100644 --- a/src/Kusto/test/New-AzKustoCluster.Recording.json +++ b/src/Kusto/test/New-AzKustoCluster.Recording.json @@ -1,17 +1,10 @@ { - "New-AzKustoCluster+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", "Content": "{\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "Headers": { - "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906" ], - "CommandName": [ "New-AzKustoCluster" ], - "FullCommandName": [ "New-AzKustoCluster_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -21,40 +14,40 @@ "Response": { "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "13ba89da-9fe1-4bc7-b966-97b27f787063" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15" ], + "ETag": [ "\"\"" ], + "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": [ "ecf46dd2-8ed4-459c-a565-6d0275e24136" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T164753Z:ecf46dd2-8ed4-459c-a565-6d0275e24136" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:47:53 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:50:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "350" ], + "Content-Length": [ "356" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+2": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,39 +56,39 @@ "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": [ "f3877456-23bf-4e33-a194-978e730bae20" ], - "x-ms-correlation-request-id": [ "5fed2eb4-70c5-4324-b6cf-e9dd4be6f9df" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T164823Z:5fed2eb4-70c5-4324-b6cf-e9dd4be6f9df" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:48:23 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:50:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+3": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,39 +97,39 @@ "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": [ "227e07a7-334e-4069-b010-cafb0c1f8863" ], - "x-ms-correlation-request-id": [ "ba63448d-d00b-45a1-a501-c0345a21b07f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T164853Z:ba63448d-d00b-45a1-a501-c0345a21b07f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:48:53 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:51:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+4": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -145,39 +138,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "83a783b1-f1dc-492a-b45e-b0b35856665d" ], - "x-ms-request-id": [ "9c3332e4-3f3b-4793-92bd-d8f094858391" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T164924Z:83a783b1-f1dc-492a-b45e-b0b35856665d" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:49:23 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:51:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+5": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -186,39 +179,39 @@ "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": [ "ad10647b-96bc-40ee-8fef-7d6aeb9931c4" ], - "x-ms-correlation-request-id": [ "549a7919-7769-4e46-b8fb-93502a9c0e8b" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T164954Z:549a7919-7769-4e46-b8fb-93502a9c0e8b" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:49:54 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:52:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+6": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -227,39 +220,39 @@ "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": [ "e848f875-9a49-476e-a10f-145949d93baf" ], - "x-ms-correlation-request-id": [ "ba9ec57d-4180-4b8d-aab9-76f92f92b23d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165025Z:ba9ec57d-4180-4b8d-aab9-76f92f92b23d" ], + "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-routing-request-id": [ "NORTHEUROPE:20200802T235249Z:9bedad82-375c-4b17-9cb3-7934a01cf7d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:50:24 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:52:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+7": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -268,39 +261,39 @@ "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": [ "555b75fc-462c-45c0-88dd-e511c107af26" ], - "x-ms-correlation-request-id": [ "f8a588b5-8392-46c4-b893-d71fd0c528bb" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165055Z:f8a588b5-8392-46c4-b893-d71fd0c528bb" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:50:54 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:53:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+8": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -309,39 +302,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b0cf5e90-d5ad-4202-934f-fcbb8fc9e4c0" ], - "x-ms-request-id": [ "09947fe2-b14b-4e60-85c6-fa5c78158cf1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165125Z:b0cf5e90-d5ad-4202-934f-fcbb8fc9e4c0" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:51:24 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:53:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+9": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -350,39 +343,39 @@ "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": [ "a53d88c8-45af-44a6-91ab-467a63fe9704" ], - "x-ms-correlation-request-id": [ "db84806d-c593-40d0-b9b5-f9dcbca6de8f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165156Z:db84806d-c593-40d0-b9b5-f9dcbca6de8f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:51:56 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:54:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+10": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -391,39 +384,39 @@ "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": [ "ada44831-a38c-4c6c-abf0-47891d3bcd41" ], - "x-ms-correlation-request-id": [ "e390ce95-6259-463c-928d-58771bddba84" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165226Z:e390ce95-6259-463c-928d-58771bddba84" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:52:26 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:54:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+11": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -432,39 +425,39 @@ "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": [ "555d1ab4-549a-4aca-b660-12574ec09db1" ], - "x-ms-correlation-request-id": [ "be8ac412-8a1a-4636-8731-678095e88bd8" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165257Z:be8ac412-8a1a-4636-8731-678095e88bd8" ], + "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-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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:52:56 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:55:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+12": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -473,39 +466,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b452e007-76dd-4a7d-aa89-af90c95f0eb8" ], - "x-ms-request-id": [ "fb2e14c7-c4aa-4100-9644-a2df155112e4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165327Z:b452e007-76dd-4a7d-aa89-af90c95f0eb8" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:53:26 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:55:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+13": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -514,39 +507,39 @@ "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": [ "f0ae7c00-4543-4d33-b44d-cbbe69dcfded" ], - "x-ms-correlation-request-id": [ "50c6be51-bc38-4287-9ae8-b67c9fc0d221" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165358Z:50c6be51-bc38-4287-9ae8-b67c9fc0d221" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:53:57 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:56:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+14": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -555,39 +548,39 @@ "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": [ "d01b7c6e-377a-4189-9a5d-8efa1ff9da45" ], - "x-ms-correlation-request-id": [ "6d58d5cb-8580-4267-b38e-7d64110296b2" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165428Z:6d58d5cb-8580-4267-b38e-7d64110296b2" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:54:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:56:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+15": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -596,39 +589,39 @@ "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": [ "e9a5b10d-bc99-4925-a54f-35d3ba923fc6" ], - "x-ms-correlation-request-id": [ "35cf876a-a21d-45a5-b0b7-b2f7b77ecd82" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165458Z:35cf876a-a21d-45a5-b0b7-b2f7b77ecd82" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:54:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:57:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+16": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -637,39 +630,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8ed0f969-c2b1-4edf-a1c1-89555e7d1db6" ], - "x-ms-request-id": [ "fdfbdb63-f3ba-4452-a584-6c2c3337350e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165528Z:8ed0f969-c2b1-4edf-a1c1-89555e7d1db6" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:55:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:57:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+17": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -678,39 +671,39 @@ "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": [ "68a85e74-5ad6-4e58-b47d-a39378685307" ], - "x-ms-correlation-request-id": [ "a7e54714-f98d-49aa-8e2d-f6219120262b" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165559Z:a7e54714-f98d-49aa-8e2d-f6219120262b" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:55:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:58:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+18": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -719,39 +712,39 @@ "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": [ "b5843562-74dd-4934-afef-57771b50bd07" ], - "x-ms-correlation-request-id": [ "6e9b97b8-6937-4125-ba2d-e739938bad96" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165629Z:6e9b97b8-6937-4125-ba2d-e739938bad96" ], + "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-routing-request-id": [ "NORTHEUROPE:20200802T235852Z:5de160df-3c6d-40c7-8bb4-5c7b4eeb17ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:56:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:58:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+19": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -760,39 +753,39 @@ "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": [ "72775c51-084e-4821-b078-aeaf62d82dc3" ], - "x-ms-correlation-request-id": [ "bfde6396-e663-4c4f-82e6-5c963805bc9a" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165700Z:bfde6396-e663-4c4f-82e6-5c963805bc9a" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:57:00 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:59:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+20": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -801,39 +794,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "63eef19f-5984-4526-940c-5849b970c5cf" ], - "x-ms-request-id": [ "5ffdd6a0-3aa8-4e5b-bafe-146158d615b6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165730Z:63eef19f-5984-4526-940c-5849b970c5cf" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:57:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Sun, 02 Aug 2020 23:59:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+21": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -842,39 +835,39 @@ "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": [ "9e4c0e1b-09b7-493a-a28e-3d19e00d85fe" ], - "x-ms-correlation-request-id": [ "e316a5a3-8b89-4b06-b224-74f5c8eaea77" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165801Z:e316a5a3-8b89-4b06-b224-74f5c8eaea77" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:58:00 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:00:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+22": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -883,39 +876,39 @@ "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": [ "3dc953c9-c825-4fd9-863c-b3722532b6f9" ], - "x-ms-correlation-request-id": [ "922b4c7b-c8f4-486a-84df-59fa46d8f5ab" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165831Z:922b4c7b-c8f4-486a-84df-59fa46d8f5ab" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "6529a522-5173-4f70-b10b-7d93683b41ba" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:58:30 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:00:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+23": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -924,39 +917,39 @@ "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": [ "30617d95-acdf-4e60-b06b-92e4002a2f5a" ], - "x-ms-correlation-request-id": [ "55718220-67c2-4a8b-9a6f-f8283f636512" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165901Z:55718220-67c2-4a8b-9a6f-f8283f636512" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:59:01 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:01:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+24": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -965,39 +958,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "40388ee3-d204-4ae8-bfd0-88773f6a4693" ], - "x-ms-request-id": [ "f45e3ceb-7b61-442f-bac4-fc1613269aac" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T165931Z:40388ee3-d204-4ae8-bfd0-88773f6a4693" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 16:59:31 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:01:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+25": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1006,39 +999,39 @@ "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": [ "cebd615a-6669-4927-86aa-247aea771bfe" ], - "x-ms-correlation-request-id": [ "dedef901-df8a-44ef-b5ab-a53a7c9b3ab6" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170002Z:dedef901-df8a-44ef-b5ab-a53a7c9b3ab6" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:00:01 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:02:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+26": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1047,39 +1040,39 @@ "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": [ "506feeea-f74c-4abb-b0a0-7190de2bfa70" ], - "x-ms-correlation-request-id": [ "525f79c4-06d1-4177-b21f-7747cc368bed" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170033Z:525f79c4-06d1-4177-b21f-7747cc368bed" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:00:32 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:02:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+27": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1088,39 +1081,39 @@ "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": [ "3ec07b98-d1db-4fce-bcb2-daa9fb7d8a9e" ], - "x-ms-correlation-request-id": [ "e4f47741-bc32-473d-92d3-780662cc5ad8" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170103Z:e4f47741-bc32-473d-92d3-780662cc5ad8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "47dd80d1-3fd7-4cca-ba50-be12e01a2505" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "8e74cf3a-a9c1-470e-8108-24c2a236e2d2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000325Z:8e74cf3a-a9c1-470e-8108-24c2a236e2d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:01:03 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:03:24 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/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+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/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1129,39 +1122,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "28030aac-9fb0-477d-97cb-e1fbabda05ca" ], - "x-ms-request-id": [ "7646ad9c-b1fa-4e32-9aec-aa1a63063040" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170133Z:28030aac-9fb0-477d-97cb-e1fbabda05ca" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "d910a791-aa06-42bd-9c2d-758decb02f7a" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "b8937b4e-d681-49f2-9463-72f17120ab31" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000355Z:b8937b4e-d681-49f2-9463-72f17120ab31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:01:33 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:03:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "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/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"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/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+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/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1170,39 +1163,122 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "bf3b8a45-2f36-4e79-aaf8-0e48eea2e9b5" ], - "x-ms-correlation-request-id": [ "701eacc2-c624-4280-904f-02b27bce6d5d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170204Z:701eacc2-c624-4280-904f-02b27bce6d5d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], + "CommandName": [ "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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": [ "Mon, 03 Aug 2020 00:03:55 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:02:03 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:04:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+30": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], - "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" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1211,39 +1287,80 @@ "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": [ "465f61f5-871d-4e55-bded-22e2dbb8a045" ], - "x-ms-correlation-request-id": [ "e545fb53-5e7e-49fd-8a8f-e9e568b21ea2" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170234Z:e545fb53-5e7e-49fd-8a8f-e9e568b21ea2" ], + "x-ms-correlation-request-id": [ "006dc294-0b2c-433b-9eab-63a160b84021" ], + "x-ms-request-id": [ "2c6bb53d-7e86-4067-846c-488d0a1076a7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000456Z:006dc294-0b2c-433b-9eab-63a160b84021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 03 Aug 2020 00:04:56 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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], - "Date": [ "Sun, 29 Mar 2020 17:02:33 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:05:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+31": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], - "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" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1252,39 +1369,80 @@ "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": [ "32a26401-0abe-4760-b771-04bd841fa556" ], - "x-ms-correlation-request-id": [ "31c8cf7f-89fb-4346-95d5-52d977dde3bc" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170304Z:31c8cf7f-89fb-4346-95d5-52d977dde3bc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "02b337d3-3845-4fe8-a9fe-864b676674fc" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:05:57 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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], - "Date": [ "Sun, 29 Mar 2020 17:03:04 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:06:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Running\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T16:47:54.5709125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15+32": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], - "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" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1293,39 +1451,203 @@ "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:06:57 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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:07:27 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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:07:58 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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "7c28b28d-6513-4c82-b337-ffaa2288e645" ], - "x-ms-request-id": [ "e51a8978-46c1-4224-aca9-db09863f5ea7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170335Z:7c28b28d-6513-4c82-b337-ffaa2288e645" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:08:27 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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], - "Date": [ "Sun, 29 Mar 2020 17:03:34 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:08:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"name\":\"981be9b1-422c-4ed7-9c98-a47e2a2f1aa4\",\"status\":\"Succeeded\",\"startTime\":\"2020-03-29T16:47:52.3989711Z\",\"endTime\":\"2020-03-29T17:03:28.4960767Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"e34e4c4d-eeba-4231-956c-be2eb64a0437\",\"provisioningState\":\"Succeeded\"}}" + "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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+33": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906", "5151a451-65c3-4292-9968-ab590b9aa906" ], - "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", "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", "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", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/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": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1334,26 +1656,310 @@ "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": [ "101b91f1-2e83-4b8b-9626-547acad98409" ], - "x-ms-correlation-request-id": [ "a3bd7c2d-f5f9-4a16-8dc3-1eceeb3fa042" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170336Z:a3bd7c2d-f5f9-4a16-8dc3-1eceeb3fa042" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:09: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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], - "Date": [ "Sun, 29 Mar 2020 17:03:35 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:09:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:10: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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "631eb99a-ea0d-4a66-b658-6bfe33cde6bc" ], + "x-ms-request-id": [ "4e171415-b450-45f4-a616-065894409c3e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001101Z:631eb99a-ea0d-4a66-b658-6bfe33cde6bc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 03 Aug 2020 00:11: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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "461438e1-472d-4c2f-aa29-4e3539c6424c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:11: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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:12: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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:12:36 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/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/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/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "b054e300-5f61-458c-b29d-5a9d3412f9b1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:12:36 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoCluster.Tests.ps1 b/src/Kusto/test/New-AzKustoCluster.Tests.ps1 index 39deb70a9f85..46d14254d93f 100644 --- a/src/Kusto/test/New-AzKustoCluster.Tests.ps1 +++ b/src/Kusto/test/New-AzKustoCluster.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzKustoCluster.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -15,7 +15,9 @@ while(-not $mockingPath) { Describe 'New-AzKustoCluster' { It 'CreateExpanded' { - $clusterCreated = New-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $env.clusterName -Location $env.location -SkuName $env.skuName -SkuTier $env.skuTier - Validate_Cluster $clusterCreated $env.clusterName $env.location "Running" "Succeeded" $env.resourceType $env.skuName $env.skuTier $env.capacity + $name = "testcluster" + $env.rstr4 + $clusterCreated = New-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $name -Location $env.location -SkuName $env.skuName -SkuTier $env.skuTier + Validate_Cluster $clusterCreated $name $env.location "Running" "Succeeded" $env.resourceType $env.skuName $env.skuTier $env.capacity + { Remove-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $name } | Should -Not -Throw } } diff --git a/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json index 8e82e75d8905..b1d885b5c0f0 100644 --- a/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json +++ b/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json @@ -1,17 +1,10 @@ { - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": "{\r\n \"properties\": {\r\n \"principalId\": \"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\r\n \"principalType\": \"App\",\r\n \"role\": \"AllDatabasesViewer\"\r\n }\r\n}", "Headers": { - "x-ms-unique-id": [ "261" ], - "x-ms-client-request-id": [ "e6a7cb2a-74ff-48f9-afbf-135c05bf5fa2" ], - "CommandName": [ "New-AzKustoClusterPrincipalAssignment" ], - "FullCommandName": [ "New-AzKustoClusterPrincipalAssignment_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -21,40 +14,40 @@ "Response": { "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "39ee8400-c26d-41c4-949d-20098b9f172f" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/148233a3-196b-4e81-a474-6ce838c865bb?api-version=2020-02-15" ], + "ETag": [ "\"\"" ], + "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": [ "7b646426-fc32-4212-bafe-c0bf3b73a78e" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152402Z:7b646426-fc32-4212-bafe-c0bf3b73a78e" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:24:01 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "446" ], + "Content-Length": [ "452" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/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/148233a3-196b-4e81-a474-6ce838c865bb?api-version=2020-02-15+2": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4232d14f-e950-46cd-8598-243d9cf300b8?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/148233a3-196b-4e81-a474-6ce838c865bb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4232d14f-e950-46cd-8598-243d9cf300b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "261", "262" ], - "x-ms-client-request-id": [ "e6a7cb2a-74ff-48f9-afbf-135c05bf5fa2", "e6a7cb2a-74ff-48f9-afbf-135c05bf5fa2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,39 +56,39 @@ "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": [ "2b22ac8f-e42d-456a-8ecf-802cb0426e9c" ], - "x-ms-correlation-request-id": [ "03db4c14-3e05-4cc8-9567-dfed382e8a0f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152432Z:03db4c14-3e05-4cc8-9567-dfed382e8a0f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:24:31 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:13:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "483" ], + "Content-Length": [ "512" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/148233a3-196b-4e81-a474-6ce838c865bb\",\"name\":\"148233a3-196b-4e81-a474-6ce838c865bb\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-02T15:24:02.1406029Z\",\"endTime\":\"2020-04-02T15:24:05.7041168Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"4db0c337-790d-44fd-ae36-e6aeccdbb268\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4232d14f-e950-46cd-8598-243d9cf300b8\",\"name\":\"4232d14f-e950-46cd-8598-243d9cf300b8\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:12:40.6727637Z\",\"endTime\":\"2020-08-03T00:12:42.9073189Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"40218c37-2a65-477f-9775-04c700e8d296\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15+3": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "261", "262", "263" ], - "x-ms-client-request-id": [ "e6a7cb2a-74ff-48f9-afbf-135c05bf5fa2", "e6a7cb2a-74ff-48f9-afbf-135c05bf5fa2", "e6a7cb2a-74ff-48f9-afbf-135c05bf5fa2" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,26 +97,147 @@ "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": [ "71057421-fa1c-4bee-80e9-359f8b4233f6" ], - "x-ms-correlation-request-id": [ "b30b430e-773e-499e-a0f2-c502db831619" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152433Z:b30b430e-773e-499e-a0f2-c502db831619" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "be25e96a-a4ce-4a59-a5a4-aac710edc423" ], + "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment" ], + "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:24:32 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=ad966661f28345a7a82e0f5252ddeee3454342c1fc885732f7b3a5976e5da774;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:13:23 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:13:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "564" ], + "Content-Length": [ "513" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/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/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/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/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "7ea1f551-e7a7-4e82-9855-469a5a1d24e8" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:13:53 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Tests.ps1 b/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Tests.ps1 index 915fb7b132a5..b57a70c0d6a7 100644 --- a/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Tests.ps1 +++ b/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzKustoClusterPrincipalAssignment.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -17,13 +17,14 @@ Describe 'New-AzKustoClusterPrincipalAssignment' { It 'CreateExpanded' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - $principalAssignmentName = $env.principalAssignmentName - $principalId = $env.principalId + $principalAssignmentName = $env.principalAssignmentName1 + $principalId = $env.principalId1 $role = $env.principalRole $principalType = $env.principalType $principalAssignmentFullName = "$clusterName/$principalAssignmentName" $principalAssignment = New-AzKustoClusterPrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $principalAssignmentName -PrincipalId $principalId -PrincipalType $principalType -Role $role Validate_PrincipalAssignment $principalAssignment $principalAssignmentFullName $principalId $principalType $role + { Remove-AzKustoClusterPrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $principalAssignmentName } | Should -Not -Throw } } diff --git a/src/Kusto/test/New-AzKustoDataConnection.Recording.json b/src/Kusto/test/New-AzKustoDataConnection.Recording.json index cfdd606ef416..7711ca1d705b 100644 --- a/src/Kusto/test/New-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/New-AzKustoDataConnection.Recording.json @@ -1,60 +1,174 @@ { - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+1": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "Method": "DELETE", + "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": [ "4" ], - "x-ms-client-request-id": [ "1d8d8399-25a4-4e2c-970e-2e39866cbff8" ], - "CommandName": [ "New-AzKustoDataConnection" ], - "FullCommandName": [ "New-AzKustoDataConnection_Create" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "0ec474b8-3b0a-4feb-a2bf-a992647bb53a" ], + "CommandName": [ "Remove-AzKustoDataConnection" ], + "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "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/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": [ "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": [ "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/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/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": [ "427" ] + "Content-Length": [ "333" ] } }, "Response": { "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fbe26411-6167-4c44-ba21-afaa18e0701a" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/51337e0c-771c-4c72-b53a-d1aa717d81d4?api-version=2020-02-15" ], + "ETag": [ "\"\"" ], + "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": [ "0bd061a9-c5d4-4038-b07e-567f0c4f1884" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T082311Z:0bd061a9-c5d4-4038-b07e-567f0c4f1884" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:23:11 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:18:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "731" ], + "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"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/51337e0c-771c-4c72-b53a-d1aa717d81d4?api-version=2020-02-15+2": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/51337e0c-771c-4c72-b53a-d1aa717d81d4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20d28af2-5699-4854-8353-e9c70f9cbe19?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "4", "5" ], - "x-ms-client-request-id": [ "1d8d8399-25a4-4e2c-970e-2e39866cbff8", "1d8d8399-25a4-4e2c-970e-2e39866cbff8" ], - "CommandName": [ "New-AzKustoDataConnection", "New-AzKustoDataConnection" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,39 +177,39 @@ "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": [ "73eaee4b-d155-4725-928c-7e674da4f86e" ], - "x-ms-correlation-request-id": [ "f3afbcd0-35cf-4353-bdbf-1e2e539ac5fe" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T082341Z:f3afbcd0-35cf-4353-bdbf-1e2e539ac5fe" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:23:40 GMT" ], - "Set-Cookie": [ "ARRAffinity=ad966661f28345a7a82e0f5252ddeee3454342c1fc885732f7b3a5976e5da774;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "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/51337e0c-771c-4c72-b53a-d1aa717d81d4\",\"name\":\"51337e0c-771c-4c72-b53a-d1aa717d81d4\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T08:23:10.9297791Z\",\"endTime\":\"2020-04-05T08:23:35.7227031Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"fe3d1dca-f3d1-44f9-acbc-2689e486b80f\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20d28af2-5699-4854-8353-e9c70f9cbe19\",\"name\":\"20d28af2-5699-4854-8353-e9c70f9cbe19\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:18:59.1886258Z\",\"endTime\":\"2020-08-03T00:19:28.300977Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+3": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "4", "5", "6" ], - "x-ms-client-request-id": [ "1d8d8399-25a4-4e2c-970e-2e39866cbff8", "1d8d8399-25a4-4e2c-970e-2e39866cbff8", "1d8d8399-25a4-4e2c-970e-2e39866cbff8" ], - "CommandName": [ "New-AzKustoDataConnection", "New-AzKustoDataConnection", "New-AzKustoDataConnection" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,84 +218,198 @@ "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": [ "17b6a0cb-2ae9-4379-9966-a4b19a71f7d8" ], - "x-ms-correlation-request-id": [ "cc606eeb-f661-4e99-b2f8-794c874c2a53" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T082341Z:cc606eeb-f661-4e99-b2f8-794c874c2a53" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:23:41 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:19:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "769" ], + "Content-Length": [ "770" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":\"\",\"mappingRuleName\":\"\",\"dataFormat\":\"\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15+1": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+1": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "Method": "DELETE", + "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": [ "6" ], - "x-ms-client-request-id": [ "a9bf1bbf-a129-4749-bffe-2395063a195d" ], - "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection" ], - "FullCommandName": [ "New-AzKustoDataConnection_Create" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "0eab4733-3d54-491c-a8ae-0f35292f15aa" ], + "CommandName": [ "Remove-AzKustoDataConnection" ], + "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "578" ] } }, "Response": { - "StatusCode": 201, + "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/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": [ "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" ], - "x-ms-request-id": [ "59e4a94f-fe6a-4e6f-b0a9-b32c5310524b" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c7491184-4848-4060-b087-c2a8704fd7b2?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "d80d5a31-af96-40bc-9cd4-f01d95eebb28" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T122010Z:d80d5a31-af96-40bc-9cd4-f01d95eebb28" ], + "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": [ "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/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/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": 201, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:20:10 GMT" ], + "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.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": [ "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": [ "Mon, 03 Aug 2020 00:20:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "884" ], + "Content-Length": [ "837" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectiong\",\"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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\"mappingRuleName\":\"EventsMapping\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\"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/c7491184-4848-4060-b087-c2a8704fd7b2?api-version=2020-02-15+2": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/c7491184-4848-4060-b087-c2a8704fd7b2?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e530971c-3e4d-42d7-8d0c-fc72d0876450?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "6", "7" ], - "x-ms-client-request-id": [ "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -190,39 +418,39 @@ "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": [ "46f29b29-1993-4e08-8f16-46bd06714e99" ], - "x-ms-correlation-request-id": [ "f7fbe258-6ca5-436c-9e32-d5aa6369f47e" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T122041Z:f7fbe258-6ca5-436c-9e32-d5aa6369f47e" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:20:41 GMT" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:20:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "485" ], + "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c7491184-4848-4060-b087-c2a8704fd7b2\",\"name\":\"c7491184-4848-4060-b087-c2a8704fd7b2\",\"status\":\"Running\",\"startTime\":\"2020-04-07T12:20:10.8217514Z\",\"endTime\":\"2020-04-07T12:20:10.8217514Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"08cd2ed3-faa9-4fd3-95e4-e757cd0eb893\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"name\":\"e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:20:19.7815487Z\",\"endTime\":\"2020-08-03T00:20:19.7815487Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c7491184-4848-4060-b087-c2a8704fd7b2?api-version=2020-02-15+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+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c7491184-4848-4060-b087-c2a8704fd7b2?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e530971c-3e4d-42d7-8d0c-fc72d0876450?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "6", "7", "8" ], - "x-ms-client-request-id": [ "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -231,39 +459,39 @@ "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": [ "789f29e2-4207-435b-8551-4dc82ac4e935" ], - "x-ms-correlation-request-id": [ "c1cbd475-f3f5-403d-8044-d9655fbba44f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T122111Z:c1cbd475-f3f5-403d-8044-d9655fbba44f" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:21:11 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "485" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c7491184-4848-4060-b087-c2a8704fd7b2\",\"name\":\"c7491184-4848-4060-b087-c2a8704fd7b2\",\"status\":\"Running\",\"startTime\":\"2020-04-07T12:20:10.8217514Z\",\"endTime\":\"2020-04-07T12:20:10.8217514Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"08cd2ed3-faa9-4fd3-95e4-e757cd0eb893\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"name\":\"e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:20:19.7815487Z\",\"endTime\":\"2020-08-03T00:20:59.1352063Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c7491184-4848-4060-b087-c2a8704fd7b2?api-version=2020-02-15+4": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c7491184-4848-4060-b087-c2a8704fd7b2?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9" ], - "x-ms-client-request-id": [ "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d" ], + "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" ], + "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": { @@ -272,39 +500,81 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "4ae6b556-e07d-4d65-b33b-def7c8671448" ], - "x-ms-request-id": [ "7b30408e-795d-4401-9e93-96f55bcb427a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T122141Z:4ae6b556-e07d-4d65-b33b-def7c8671448" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:21:41 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "489" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c7491184-4848-4060-b087-c2a8704fd7b2\",\"name\":\"c7491184-4848-4060-b087-c2a8704fd7b2\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T12:20:10.8217514Z\",\"endTime\":\"2020-04-07T12:21:20.0788126Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"08cd2ed3-faa9-4fd3-95e4-e757cd0eb893\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15+5": { + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "9ea5d9ee-3150-4118-a366-34dd670d517f" ], + "CommandName": [ "Remove-AzKustoDataConnection" ], + "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9", "10" ], - "x-ms-client-request-id": [ "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d", "a9bf1bbf-a129-4749-bffe-2395063a195d" ], - "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" ], + "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": { @@ -313,84 +583,115 @@ "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": [ "e07b0679-28d9-44f6-bf6e-e6e70cb7d1b9" ], - "x-ms-correlation-request-id": [ "6a1396dd-a6d5-4de3-a5c2-417e7af65509" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T122142Z:6a1396dd-a6d5-4de3-a5c2-417e7af65509" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:21:42 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:21:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "895" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectiong\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/52158415-4c7c-4b55-bc17-276c784c6f9b\",\"name\":\"52158415-4c7c-4b55-bc17-276c784c6f9b\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:21:21.6313703Z\",\"endTime\":\"2020-08-03T00:21:21.7407488Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"ce6e9b89-ce9b-4a52-aa9f-d3ae32dfacea\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15+1": { + "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": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"iothubforread\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "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": [ "12" ], - "x-ms-client-request-id": [ "36243d52-fcd1-414c-999f-004ef71af3e9" ], - "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection" ], - "FullCommandName": [ "New-AzKustoDataConnection_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "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": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "411" ] } }, "Response": { - "StatusCode": 201, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9d0050a4-6f03-4e2e-a477-cba897f9d267" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/40ebd97b-2b27-4c40-b700-98aacdc62867?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "4fea6761-9d14-42b4-bdc3-72b4f584c980" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T124748Z:4fea6761-9d14-42b4-bdc3-72b4f584c980" ], + "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/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/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": 201, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:47:48 GMT" ], + "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.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": [ "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": [ "Mon, 03 Aug 2020 00:21:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "717" ], + "Content-Length": [ "664" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectionh\",\"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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\"mappingRuleName\":\"EventsMapping\",\"sharedAccessPolicyName\":\"iothubforread\",\"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/40ebd97b-2b27-4c40-b700-98aacdc62867?api-version=2020-02-15+2": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/40ebd97b-2b27-4c40-b700-98aacdc62867?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/da3a3259-50e8-4052-8411-ba44a43cfa78?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "12", "13" ], - "x-ms-client-request-id": [ "36243d52-fcd1-414c-999f-004ef71af3e9", "36243d52-fcd1-414c-999f-004ef71af3e9" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -399,39 +700,39 @@ "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": [ "987a6c48-be38-4e85-a6db-abd9d15e3fdf" ], - "x-ms-correlation-request-id": [ "2707c969-2dfa-44d3-a2f3-95ded6e66048" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T124819Z:2707c969-2dfa-44d3-a2f3-95ded6e66048" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "5fc452f8-c64f-4b3d-a005-e824e51ad7f6" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:48:18 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/40ebd97b-2b27-4c40-b700-98aacdc62867\",\"name\":\"40ebd97b-2b27-4c40-b700-98aacdc62867\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T12:47:48.7102294Z\",\"endTime\":\"2020-04-07T12:47:49.9757891Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"6e0d4f5d-4e61-4fdf-a1d7-5c911de59671\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/da3a3259-50e8-4052-8411-ba44a43cfa78\",\"name\":\"da3a3259-50e8-4052-8411-ba44a43cfa78\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:21:53.2510658Z\",\"endTime\":\"2020-08-03T00:21:54.3761568Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15+3": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "12", "13", "14" ], - "x-ms-client-request-id": [ "36243d52-fcd1-414c-999f-004ef71af3e9", "36243d52-fcd1-414c-999f-004ef71af3e9", "36243d52-fcd1-414c-999f-004ef71af3e9" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -440,26 +741,26 @@ "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": [ "c263bfec-a332-42a9-ab68-1b193f9ad65a" ], - "x-ms-correlation-request-id": [ "46eb5909-7e6f-4f9e-97f7-0b9a48ee0b0d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T124819Z:46eb5909-7e6f-4f9e-97f7-0b9a48ee0b0d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:48:18 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:22:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "755" ], + "Content-Length": [ "754" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectionh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"iothubforread\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":\"\",\"mappingRuleName\":\"\",\"dataFormat\":\"\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 b/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 index 413c8005ea26..8e7a1b4a4f02 100644 --- a/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzKustoDataConnection.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -21,17 +21,15 @@ Describe 'New-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName - $eventhubNS= $env.eventhubNSName - $eventhub= $env.eventhubName + $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 = 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 + { 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 -ConsumerGroup '$Default' -Compression "None" + Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $kind } It 'CreateExpandedEventGrid' { @@ -41,19 +39,17 @@ Describe 'New-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName + "g" - $eventhubNS= $env.eventhubNSNameForEventGrid - $eventhub= $env.eventhubNameForEventGrid + $eventhubNS = $env.eventhubNSNameForEventGrid + $eventhub = $env.eventhubNameForEventGrid $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" - $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 + { 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 -ConsumerGroup '$Default' + Validate_EventGridDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $storageAccountResourceId $kind } It 'CreateExpandedIotHub' { @@ -66,13 +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" - $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 + { 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 -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 82de235d23c5..91de4ed0ea94 100644 --- a/src/Kusto/test/New-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/New-AzKustoDatabase.Recording.json @@ -1,17 +1,10 @@ { - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { - "x-ms-unique-id": [ "129" ], - "x-ms-client-request-id": [ "b0b7932a-712b-4af7-af7f-866cbdb08697" ], - "CommandName": [ "New-AzKustoDatabase" ], - "FullCommandName": [ "New-AzKustoDatabase_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -21,40 +14,40 @@ "Response": { "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6082e92c-efd8-4f60-a918-8a4fb48e842e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/afaa764e-528c-4ea0-9e76-244ffb4a2471?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "e92abbcd-64c0-4fdc-9b02-cab18994d435" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200401T134332Z:e92abbcd-64c0-4fdc-9b02-cab18994d435" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 01 Apr 2020 13:43:31 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:13:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "351" ], + "Content-Length": [ "363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"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/afaa764e-528c-4ea0-9e76-244ffb4a2471?api-version=2020-02-15+2": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/02f3b2c5-607d-4be9-a573-e1676fc0c0bf?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/afaa764e-528c-4ea0-9e76-244ffb4a2471?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/02f3b2c5-607d-4be9-a573-e1676fc0c0bf?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "129", "130" ], - "x-ms-client-request-id": [ "b0b7932a-712b-4af7-af7f-866cbdb08697", "b0b7932a-712b-4af7-af7f-866cbdb08697" ], - "CommandName": [ "New-AzKustoDatabase", "New-AzKustoDatabase" ], - "FullCommandName": [ "New-AzKustoDatabase_CreateExpanded", "New-AzKustoDatabase_CreateExpanded" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,39 +56,39 @@ "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": [ "b73306e6-56db-42dd-92a4-3a7b9dd56272" ], - "x-ms-correlation-request-id": [ "74d2b3a7-23c7-4d90-9952-853f464416e3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200401T134402Z:74d2b3a7-23c7-4d90-9952-853f464416e3" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 01 Apr 2020 13:44:02 GMT" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:14:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/afaa764e-528c-4ea0-9e76-244ffb4a2471\",\"name\":\"afaa764e-528c-4ea0-9e76-244ffb4a2471\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-01T13:43:32.3305393Z\",\"endTime\":\"2020-04-01T13:43:34.2211782Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"429cf1dc-067b-4986-a9a1-5c9e41cf138c\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/02f3b2c5-607d-4be9-a573-e1676fc0c0bf\",\"name\":\"02f3b2c5-607d-4be9-a573-e1676fc0c0bf\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:14:00.4450235Z\",\"endTime\":\"2020-08-03T00:14:02.7108404Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"5a0ed027-658a-4bc4-9089-5dd4f270bc5e\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+3": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "129", "130", "131" ], - "x-ms-client-request-id": [ "b0b7932a-712b-4af7-af7f-866cbdb08697", "b0b7932a-712b-4af7-af7f-866cbdb08697", "b0b7932a-712b-4af7-af7f-866cbdb08697" ], - "CommandName": [ "New-AzKustoDatabase", "New-AzKustoDatabase", "New-AzKustoDatabase" ], - "FullCommandName": [ "New-AzKustoDatabase_CreateExpanded", "New-AzKustoDatabase_CreateExpanded", "New-AzKustoDatabase_CreateExpanded" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,84 +97,198 @@ "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": [ "b4e2d692-2d5f-42fd-b952-524490f62d87" ], - "x-ms-correlation-request-id": [ "7e36ab1d-0df0-4496-a84f-12e719720989" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200401T134403Z:7e36ab1d-0df0-4496-a84f-12e719720989" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 01 Apr 2020 13:44:03 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:14:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "505" ], + "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"softDeletePeriod\":null,\"hotCachePeriodInDays\":0,\"hotCachePeriod\":null,\"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]+Create+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "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": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", - "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}", + "Method": "DELETE", + "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": [ "582" ], - "x-ms-client-request-id": [ "8adf3c4a-0fd6-44e1-b819-2125295642e7" ], - "CommandName": [ "New-AzKustoDatabase" ], - "FullCommandName": [ "New-AzKustoDatabase_Create" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "7851eabc-56dc-4dc0-9d62-e30aa1bdd7a2" ], + "CommandName": [ "Remove-AzKustoDatabase" ], + "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "115" ] } }, "Response": { - "StatusCode": 201, + "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/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": [ "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": [ "Mon, 03 Aug 2020 00:14:40 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], - "x-ms-request-id": [ "d5c380e6-47f2-43e0-bd47-e072689a7943" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/a54811e6-343e-49b2-bed4-5f2ffe6bd6b4?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "2e658de8-3f63-42e8-9d93-122c0d80b31c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T210411Z:2e658de8-3f63-42e8-9d93-122c0d80b31c" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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" ], - "Date": [ "Sun, 29 Mar 2020 21:04:11 GMT" ], + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:15:15 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "107" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.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": [ "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": [ "Mon, 03 Aug 2020 00:15:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "399" ], + "Content-Length": [ "386" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"hotCachePeriod\":\"P2D\",\"softDeletePeriod\":\"P4D\",\"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/a54811e6-343e-49b2-bed4-5f2ffe6bd6b4?api-version=2020-02-15+2": { + "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d8e793a2-7410-4216-a60c-5720fde89135?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/a54811e6-343e-49b2-bed4-5f2ffe6bd6b4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d8e793a2-7410-4216-a60c-5720fde89135?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "582", "583" ], - "x-ms-client-request-id": [ "8adf3c4a-0fd6-44e1-b819-2125295642e7", "8adf3c4a-0fd6-44e1-b819-2125295642e7" ], - "CommandName": [ "New-AzKustoDatabase", "New-AzKustoDatabase" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -190,39 +297,39 @@ "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": [ "546c2e5a-59b6-408c-8d02-6cc441e7276d" ], - "x-ms-correlation-request-id": [ "3974feff-335b-45b8-aeca-c5d54220849f" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T210442Z:3974feff-335b-45b8-aeca-c5d54220849f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 21:04:41 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:15:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/a54811e6-343e-49b2-bed4-5f2ffe6bd6b4\",\"name\":\"a54811e6-343e-49b2-bed4-5f2ffe6bd6b4\",\"status\":\"Succeeded\",\"startTime\":\"2020-03-29T21:04:11.8865911Z\",\"endTime\":\"2020-03-29T21:04:14.8256723Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"e2d511b5-c4a5-4fd1-a064-6f28925e63a0\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d8e793a2-7410-4216-a60c-5720fde89135\",\"name\":\"d8e793a2-7410-4216-a60c-5720fde89135\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:15:18.3265003Z\",\"endTime\":\"2020-08-03T00:15:20.4829274Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"682813f3-73b8-4148-925a-75e011ac998b\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+3": { + "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "582", "583", "584" ], - "x-ms-client-request-id": [ "8adf3c4a-0fd6-44e1-b819-2125295642e7", "8adf3c4a-0fd6-44e1-b819-2125295642e7", "8adf3c4a-0fd6-44e1-b819-2125295642e7" ], - "CommandName": [ "New-AzKustoDatabase", "New-AzKustoDatabase", "New-AzKustoDatabase" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -231,26 +338,147 @@ "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": [ "3d9a667a-1b7a-4124-a6bd-52d297d60f72" ], - "x-ms-correlation-request-id": [ "cf40b8db-b61d-4fdc-8aa2-1e07834d21c8" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T210443Z:cf40b8db-b61d-4fdc-8aa2-1e07834d21c8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "56bc73f5-0548-45c2-bd9a-5685a3320ec0" ], + "CommandName": [ "Remove-AzKustoDatabase" ], + "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 21:04:43 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:15:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "507" ], + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "5d836028-bc5e-4b32-9ee3-016c0fb5cc9a" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae\",\"name\":\"37342ceb-2132-4f1d-b9ca-1deb47b9e8ae\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:15:58.4548334Z\",\"endTime\":\"2020-08-03T00:16:01.095675Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"6eb9317b-97cd-456f-8f02-4f5253c9df57\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "01b59261-f4c9-455e-ba0b-a61c955891c5" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:16:34 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoDatabase.Tests.ps1 b/src/Kusto/test/New-AzKustoDatabase.Tests.ps1 index 7ed57e3cf9cb..ba174036a6ec 100644 --- a/src/Kusto/test/New-AzKustoDatabase.Tests.ps1 +++ b/src/Kusto/test/New-AzKustoDatabase.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzKustoDatabase.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -15,18 +15,21 @@ while(-not $mockingPath) { Describe 'New-AzKustoDatabase' { It 'CreateExpanded' { - $databaseFullName = $env.clusterName + "/" + $env.databaseName + $name = "testdatabase" + $env.rstr4 + $databaseFullName = $env.clusterName + "/" + $name - $databaseCreated = New-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $env.databaseName -Kind ReadWrite -Location $env.location + $databaseCreated = New-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $name -Kind ReadWrite -Location $env.location Validate_Database $databaseCreated $databaseFullName $env.location $env.databaseType $null $null + { Remove-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $name } | Should -Not -Throw } It 'Create' { - $softDeletePeriodInDays = Get-Soft-Delete-Period-In-Days - $hotCachePeriodInDays = Get-Hot-Cache-Period-In-Days - $databaseFullName = $env.clusterName + "/" + $env.databaseName + $hotCachePeriodInDays = Get-Hot-Cache-Period-In-Days + $name = "testdatabase" + $env.rstr5 + $databaseFullName = $env.clusterName + "/" + $name - $databaseCreated = New-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $env.databaseName -Location $env.location -Kind "ReadOnly" -SoftDeletePeriod $softDeletePeriodInDays -HotCachePeriod $hotCachePeriodInDays - Validate_Database $databaseCreated $databaseFullName $env.location $env.databaseType $softDeletePeriodInDays $hotCachePeriodInDays + $databaseCreated = New-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $name -Location $env.location -Kind ReadWrite -HotCachePeriod $hotCachePeriodInDays + Validate_Database $databaseCreated $databaseFullName $env.location $env.databaseType $null $hotCachePeriodInDays + { Remove-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $name } | Should -Not -Throw } } diff --git a/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json index c6b57012b709..0005f1a90daa 100644 --- a/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json +++ b/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json @@ -1,17 +1,10 @@ { - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": "{\r\n \"properties\": {\r\n \"principalId\": \"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\r\n \"principalType\": \"App\",\r\n \"role\": \"Viewer\"\r\n }\r\n}", "Headers": { - "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "2a1813c6-7114-4f5b-9053-bd0384d5b82f" ], - "CommandName": [ "New-AzKustoDatabasePrincipalAssignment" ], - "FullCommandName": [ "New-AzKustoDatabasePrincipalAssignment_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -21,40 +14,40 @@ "Response": { "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "927c34cc-0bf4-468f-b5ec-03d3fb49dabb" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/99f492bf-aab4-4868-a5f1-4b5a9921c5b8?api-version=2020-02-15" ], + "ETag": [ "\"\"" ], + "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": [ "e6c48339-8d94-44ed-9859-7c0fafceae40" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155258Z:e6c48339-8d94-44ed-9859-7c0fafceae40" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:52:58 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:16:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "486" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/sdkpowershelldb/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/99f492bf-aab4-4868-a5f1-4b5a9921c5b8?api-version=2020-02-15+2": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e1518e16-a307-4a69-b3b1-4edba1860479?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/99f492bf-aab4-4868-a5f1-4b5a9921c5b8?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e1518e16-a307-4a69-b3b1-4edba1860479?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "277", "278" ], - "x-ms-client-request-id": [ "2a1813c6-7114-4f5b-9053-bd0384d5b82f", "2a1813c6-7114-4f5b-9053-bd0384d5b82f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,39 +56,39 @@ "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": [ "42f03853-cec5-4aef-b56f-6be7fa6132cd" ], - "x-ms-correlation-request-id": [ "aab3c1e0-5c9b-4a27-8056-5220c2f63e14" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155328Z:aab3c1e0-5c9b-4a27-8056-5220c2f63e14" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T001720Z:1ff72e1f-b0eb-44d8-8d5d-f0f2209cf908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:53:28 GMT" ], - "Set-Cookie": [ "ARRAffinity=ad966661f28345a7a82e0f5252ddeee3454342c1fc885732f7b3a5976e5da774;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:17:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/99f492bf-aab4-4868-a5f1-4b5a9921c5b8\",\"name\":\"99f492bf-aab4-4868-a5f1-4b5a9921c5b8\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-02T15:52:57.9960113Z\",\"endTime\":\"2020-04-02T15:52:58.1209476Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"9bff7d5e-5022-458c-b25a-70112cf0b746\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e1518e16-a307-4a69-b3b1-4edba1860479\",\"name\":\"e1518e16-a307-4a69-b3b1-4edba1860479\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:16:45.3806086Z\",\"endTime\":\"2020-08-03T00:16:48.5371156Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"760a8218-05fe-4ca1-b01b-7b3318f66776\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15+3": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "277", "278", "279" ], - "x-ms-client-request-id": [ "2a1813c6-7114-4f5b-9053-bd0384d5b82f", "2a1813c6-7114-4f5b-9053-bd0384d5b82f", "2a1813c6-7114-4f5b-9053-bd0384d5b82f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,26 +97,147 @@ "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": [ "6f0b0d8b-68cd-48e8-b16b-dae5e756d9c4" ], - "x-ms-correlation-request-id": [ "d47baae6-4145-470e-9dd5-7cb19f61ed80" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155328Z:d47baae6-4145-470e-9dd5-7cb19f61ed80" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "333" ], + "x-ms-client-request-id": [ "9e1dbf52-1a63-4b1c-80fe-a84ad201bdc9" ], + "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment" ], + "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:53:28 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:17:27 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:18:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "604" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1\",\"name\":\"sdkpsclustereu/sdkpowershelldb/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/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/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/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "8a12d451-660b-499e-9fea-5dcdc5dd3029" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:18:00 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Tests.ps1 b/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Tests.ps1 index 22d1a3763602..9fd89c1729f8 100644 --- a/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Tests.ps1 +++ b/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Tests.ps1 @@ -18,13 +18,14 @@ Describe 'New-AzKustoDatabasePrincipalAssignment' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $principalAssignmentName = $env.principalAssignmentName - $principalId = $env.principalId + $principalAssignmentName = $env.principalAssignmentName1 + $principalId = $env.principalId1 $role = $env.databasePrincipalRole $principalType = $env.principalType $principalAssignmentFullName = "$clusterName/$databaseName/$principalAssignmentName" $principalAssignment = New-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $principalAssignmentName -DatabaseName $databaseName -PrincipalId $principalId -PrincipalType $principalType -Role $role Validate_PrincipalAssignment $principalAssignment $principalAssignmentFullName $principalId $principalType $role + { Remove-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -PrincipalAssignmentName $principalAssignmentName } | Should -Not -Throw } } diff --git a/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json index 46ff0b870eb0..617278f2f8ce 100644 --- a/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json +++ b/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json @@ -1,16 +1,256 @@ { - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15+1": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "53" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/27b712cd-2530-4c6e-9f2a-18af0ca27c9f?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "ce70867f-e7c2-4b0c-ad05-a4284a862333" ], + "x-ms-request-id": [ "13b9dd09-2a91-42e4-85f3-4cd7c0cdb1ca" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002256Z:ce70867f-e7c2-4b0c-ad05-a4284a862333" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 03 Aug 2020 00:22: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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/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": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "312" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/007948af-6a79-439c-99fb-afa2053dfddd?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:23:27 GMT" ] + }, + "ContentHeaders": { + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/AttachedDatabaseConfigurations/sdkpowershellfconfig?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "2775ba2b-16bd-41c2-ad16-bd5a3fd97cc0" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "4eb8cde9-0b8f-4442-8672-86a244b30e84" ], "CommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +259,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3a61a6c1-f083-4d37-9c86-c693ecfbd59d?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "8ae7d217-57a3-4954-9a6a-861c24a3f414" ], - "x-ms-correlation-request-id": [ "8ae7d217-57a3-4954-9a6a-861c24a3f414" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T115609Z:8ae7d217-57a3-4954-9a6a-861c24a3f414" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 11:56:08 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3a61a6c1-f083-4d37-9c86-c693ecfbd59d?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:23:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3a61a6c1-f083-4d37-9c86-c693ecfbd59d?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/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/3a61a6c1-f083-4d37-9c86-c693ecfbd59d?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "17", "18" ], - "x-ms-client-request-id": [ "2775ba2b-16bd-41c2-ad16-bd5a3fd97cc0", "2775ba2b-16bd-41c2-ad16-bd5a3fd97cc0" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +300,39 @@ "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": [ "0dd93432-deb6-42c9-8f64-f5431ab62c5b" ], - "x-ms-correlation-request-id": [ "33bbbe38-0249-40c8-add6-423fc576b7df" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T115639Z:33bbbe38-0249-40c8-add6-423fc576b7df" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "c728b8d2-29eb-418d-a87a-fff96eee605b" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 11:56:39 GMT" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:23: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/3a61a6c1-f083-4d37-9c86-c693ecfbd59d\",\"name\":\"3a61a6c1-f083-4d37-9c86-c693ecfbd59d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T11:56:09.503862Z\",\"endTime\":\"2020-04-05T11:56:12.2538173Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"48767016-d1e6-4b5c-97f6-68a84c8cd00d\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/09b68c23-96d4-4419-89b8-1aceec664233\",\"name\":\"09b68c23-96d4-4419-89b8-1aceec664233\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:23:29.3013363Z\",\"endTime\":\"2020-08-03T00:23:33.1866774Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"cf033952-5166-4dcf-94ba-831c7b666438\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3a61a6c1-f083-4d37-9c86-c693ecfbd59d?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "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/3a61a6c1-f083-4d37-9c86-c693ecfbd59d?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "17", "18", "19" ], - "x-ms-client-request-id": [ "2775ba2b-16bd-41c2-ad16-bd5a3fd97cc0", "2775ba2b-16bd-41c2-ad16-bd5a3fd97cc0", "2775ba2b-16bd-41c2-ad16-bd5a3fd97cc0" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,22 +341,143 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "715642fe-7f2a-41d1-ae1a-6a5a68cc9a0d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "4499d065-a231-4c7d-913e-19693cf2c5ad" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T115640Z:4499d065-a231-4c7d-913e-19693cf2c5ad" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:23:59 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "2429698d-c103-4fdc-bb87-d9e5db3e449e" ], + "CommandName": [ "Remove-AzKustoDatabase" ], + "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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": [ "Mon, 03 Aug 2020 00:23:59 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 11:56:39 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "cf7b0050-ef7e-4a85-b648-9f8e3b7d665b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-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": [ "Mon, 03 Aug 2020 00:24:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "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/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/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/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:24:29 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } } diff --git a/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Tests.ps1 b/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Tests.ps1 index b0c912ad9738..d17c4e186671 100644 --- a/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoAttachedDatabaseConfiguration.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -15,10 +15,19 @@ while(-not $mockingPath) { Describe 'Remove-AzKustoAttachedDatabaseConfiguration' { It 'Delete' { + $subscriptionId = $env.SubscriptionId + $location = $env.location $resourceGroupName = $env.resourceGroupName - $attachedDatabaseConfigurationName = $env.attachedDatabaseConfigurationName + $clusterName = $env.clusterName + $databaseName = "testdatabase" + $env.rstr5 + $attachedDatabaseConfigurationName = "testdbconf" + $env.rstr5 $followerClusterName = $env.followerClusterName - + $defaultPrincipalsModificationKind = $env.defaultPrincipalsModificationKind + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + + New-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName -Kind ReadWrite -Location $location + New-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName -Name $attachedDatabaseConfigurationName -Location $location -ClusterResourceId $clusterResourceId -DatabaseName $databaseName -DefaultPrincipalsModificationKind $defaultPrincipalsModificationKind { Remove-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName -Name $attachedDatabaseConfigurationName } | Should -Not -Throw + Remove-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName } } diff --git a/src/Kusto/test/Remove-AzKustoCluster.Recording.json b/src/Kusto/test/Remove-AzKustoCluster.Recording.json index 560e29974abb..c28e6976d3ea 100644 --- a/src/Kusto/test/Remove-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Remove-AzKustoCluster.Recording.json @@ -1,57 +1,53 @@ { - "Remove-AzKustoCluster+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Remove-AzKustoCluster+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+1": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", - "Content": null, + "Method": "PUT", + "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": { - "x-ms-unique-id": [ "124" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "CommandName": [ "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "103" ] } }, "Response": { - "StatusCode": 202, + "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "75daf77f-6427-4cc6-8ba2-222c91680f34" ], - "x-ms-correlation-request-id": [ "75daf77f-6427-4cc6-8ba2-222c91680f34" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171014Z:75daf77f-6427-4cc6-8ba2-222c91680f34" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:10:13 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:24:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "356" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": null + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+2": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +56,39 @@ "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": [ "b22f10bc-5fab-49af-96ea-28cebc370ed6" ], - "x-ms-correlation-request-id": [ "03991222-7e96-4216-b48d-35a746d09471" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171044Z:03991222-7e96-4216-b48d-35a746d09471" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:10:44 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:25:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+3": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,39 +97,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8ae66e50-400a-4c72-b12f-fe3ce4bc5946" ], - "x-ms-request-id": [ "63fae9dc-ffcf-477a-9c0f-a6d3c48ffc74" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171115Z:8ae66e50-400a-4c72-b12f-fe3ce4bc5946" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:11:15 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:25:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+4": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -142,39 +138,39 @@ "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": [ "544956a0-9554-4403-afd8-745676ee57bd" ], - "x-ms-correlation-request-id": [ "a2c8769a-ebf9-4aec-abf9-e125f27deb83" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171145Z:a2c8769a-ebf9-4aec-abf9-e125f27deb83" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:11:45 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:26:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+5": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -183,39 +179,39 @@ "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": [ "c5acd6c1-e164-4e57-ae2f-b0def0be8b83" ], - "x-ms-correlation-request-id": [ "8910c59e-79ad-43dd-a16f-0d6f64d91623" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171216Z:8910c59e-79ad-43dd-a16f-0d6f64d91623" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:12:15 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:26:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+6": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -224,39 +220,39 @@ "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": [ "a29acf95-40eb-401f-99a0-a83023e0f027" ], - "x-ms-correlation-request-id": [ "d6fec96f-d412-47c1-b71c-71ce96c8e36e" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171246Z:d6fec96f-d412-47c1-b71c-71ce96c8e36e" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:12:45 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:27:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+7": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -265,39 +261,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "d73402f9-de4f-416d-b628-19acbc4f7820" ], - "x-ms-request-id": [ "fe8ce2ce-f654-4b3f-90d4-343399cfed96" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171316Z:d73402f9-de4f-416d-b628-19acbc4f7820" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:13:16 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:27:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+8": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -306,39 +302,39 @@ "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": [ "a6c6e7c7-e81d-4a75-947d-6885f37ddc50" ], - "x-ms-correlation-request-id": [ "69f79802-9e02-4539-8057-12eb70af1938" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171347Z:69f79802-9e02-4539-8057-12eb70af1938" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:13:47 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:28:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+9": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -347,39 +343,39 @@ "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": [ "838d77fe-2a58-4660-9517-3e95f182d0d4" ], - "x-ms-correlation-request-id": [ "9e5ceacc-4ec5-42b4-9a7a-b5d12bd0f4f3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171417Z:9e5ceacc-4ec5-42b4-9a7a-b5d12bd0f4f3" ], + "x-ms-correlation-request-id": [ "af2ba33d-a767-4d15-926d-4781c9f52fc9" ], + "x-ms-request-id": [ "8a311756-bf50-4156-a9be-98713b6f6b47" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002836Z:af2ba33d-a767-4d15-926d-4781c9f52fc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:14:17 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:28:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+10": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -388,39 +384,39 @@ "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": [ "a245e1ad-b2bd-4597-9715-30c7ee6e728c" ], - "x-ms-correlation-request-id": [ "601f11ee-f522-46f4-9943-a49cedb6fa2a" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171448Z:601f11ee-f522-46f4-9943-a49cedb6fa2a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "bf5cb260-8139-46b8-85da-ab4cda3a14b3" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:14:47 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:29:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+11": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -429,39 +425,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6dfe18e7-3b89-48d1-9b74-00a5a34a7ec9" ], - "x-ms-request-id": [ "2a59604c-d851-47d7-90a5-e4a81e35c5bb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171518Z:6dfe18e7-3b89-48d1-9b74-00a5a34a7ec9" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:15:17 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:29:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+12": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -470,39 +466,39 @@ "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": [ "18c100cc-8b67-4ee0-8c0a-64b843ef312c" ], - "x-ms-correlation-request-id": [ "64f00e91-1b53-4dd3-8069-8869d1007ffe" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171549Z:64f00e91-1b53-4dd3-8069-8869d1007ffe" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:15:49 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:30:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+13": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -511,39 +507,39 @@ "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": [ "caa9b0ce-1a19-4f01-af5c-f30af8bc3bcf" ], - "x-ms-correlation-request-id": [ "ad6b2423-047f-41ac-8ee5-d0a0001d7fd2" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171619Z:ad6b2423-047f-41ac-8ee5-d0a0001d7fd2" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:16:19 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+14": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -552,39 +548,39 @@ "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": [ "54ff0114-83e4-40fe-9ba7-03504c285ca8" ], - "x-ms-correlation-request-id": [ "75794b13-fc78-471a-b70d-8051a3f17307" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171649Z:75794b13-fc78-471a-b70d-8051a3f17307" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:16:49 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:31:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+15": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -593,39 +589,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "46408225-6f59-4d2f-99ee-830d5cd6e9a5" ], - "x-ms-request-id": [ "6e3cd824-6514-4491-a113-90fd63db8b28" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171720Z:46408225-6f59-4d2f-99ee-830d5cd6e9a5" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:17:19 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:31:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+16": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -634,39 +630,39 @@ "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": [ "232ac0f1-766f-42a7-87f7-240373b5de59" ], - "x-ms-correlation-request-id": [ "a92beab2-bd1b-441c-96d4-2bebf79f96a4" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171750Z:a92beab2-bd1b-441c-96d4-2bebf79f96a4" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:17:50 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:32:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+17": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -675,39 +671,39 @@ "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": [ "dc4b905f-801b-468d-9f4f-c4dbed6f8ac5" ], - "x-ms-correlation-request-id": [ "af1f1303-97e3-4737-a6bb-ec6b4df3f86c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171821Z:af1f1303-97e3-4737-a6bb-ec6b4df3f86c" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:18:20 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:32:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+18": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -716,39 +712,39 @@ "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": [ "1876cdbf-76ba-44dd-bc5f-f7d8b7f5cb8b" ], - "x-ms-correlation-request-id": [ "9f3a6bbf-2930-400b-9c02-ca8eb85a0329" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171851Z:9f3a6bbf-2930-400b-9c02-ca8eb85a0329" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:18:50 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:33:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+19": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -757,39 +753,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ede2aead-67e3-489e-bdf3-a3a974d93198" ], - "x-ms-request-id": [ "4d0319b6-8290-4d29-944a-493487194c3a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171921Z:ede2aead-67e3-489e-bdf3-a3a974d93198" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:19:20 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:33:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+20": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -798,39 +794,39 @@ "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": [ "d553a5bb-49ac-4724-beca-bc72af8d22c0" ], - "x-ms-correlation-request-id": [ "87157742-baa3-4cc9-8a0b-993117d35e27" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171952Z:87157742-baa3-4cc9-8a0b-993117d35e27" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:19:52 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:34:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+21": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -839,39 +835,39 @@ "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": [ "6427156d-1aca-4879-9a12-bd7df66f38ff" ], - "x-ms-correlation-request-id": [ "c88c1599-deca-4bd6-a387-0df34eda0d94" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172022Z:c88c1599-deca-4bd6-a387-0df34eda0d94" ], + "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:20200803T003439Z:5e921eda-71eb-4dba-a21f-d109f352aa3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:20:22 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:34:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+22": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -880,39 +876,39 @@ "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": [ "72d2b84d-d29a-4f22-b288-2c391b60f536" ], - "x-ms-correlation-request-id": [ "58be63c3-f4ac-401f-825b-cf26496719f9" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172053Z:58be63c3-f4ac-401f-825b-cf26496719f9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "fdccf556-8318-46e4-8e2b-7a3fddaa68f2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:20:52 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:35:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+23": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "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": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -921,39 +917,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "f46cc3ae-66a6-4165-a3bd-2e1a50efc7c4" ], - "x-ms-request-id": [ "a7f03423-30d7-4531-91bb-614fd1be37cb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172124Z:f46cc3ae-66a6-4165-a3bd-2e1a50efc7c4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "170e393f-9e1c-458a-8868-924dbcf5257c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:21:23 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+24": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "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": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -962,39 +958,39 @@ "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": [ "c6285638-f31a-442c-bc18-7080a617f88c" ], - "x-ms-correlation-request-id": [ "ffe46dd5-0610-46cb-8e27-280932907c1d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172155Z:ffe46dd5-0610-46cb-8e27-280932907c1d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "193c5c1f-c3f5-4911-a5fc-63387006ceb7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:21:54 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:36:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+25": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1003,39 +999,39 @@ "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": [ "2248fde9-140b-474b-a613-fa1880125779" ], - "x-ms-correlation-request-id": [ "d3abee07-7731-4573-9258-6f2441ce96ad" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172225Z:d3abee07-7731-4573-9258-6f2441ce96ad" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "c1750f70-47cf-4dba-96a4-7998d35de871" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:22:25 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:36:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+26": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1044,39 +1040,39 @@ "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": [ "f4770a15-6f62-454f-8e00-ade0e6da19e1" ], - "x-ms-correlation-request-id": [ "ad11f870-bbb0-4bec-81fe-7d9e9fca5a09" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172255Z:ad11f870-bbb0-4bec-81fe-7d9e9fca5a09" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "8012e8f3-2e84-48a0-b1d9-b144c0ccf251" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:22:55 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:37:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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,39 +1081,163 @@ "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:37:40 GMT" ] + }, + "ContentHeaders": { + "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/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/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/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "1f2572d7-41e3-4976-9c08-3f92af7005e6" ], - "x-ms-request-id": [ "fa53a79b-ac66-433d-baae-ba6c99f02733" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172325Z:1f2572d7-41e3-4976-9c08-3f92af7005e6" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:38:10 GMT" ] + }, + "ContentHeaders": { + "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/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/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:23:25 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "a00e42d3-6fb6-4033-9593-18de3e0fb6c9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:38:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho\",\"name\":\"testclustersu8yho\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclustersu8yho.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclustersu8yho.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15+28": { + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 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/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": [ "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": [ "Mon, 03 Aug 2020 00:38:11 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "x-ms-unique-id": [ "396", "397" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1126,39 +1246,39 @@ "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": [ "0589060f-1017-4977-bcaa-3c707514a318" ], - "x-ms-correlation-request-id": [ "4cf058b3-02be-4d99-9ce2-d6c15502e9ac" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172356Z:4cf058b3-02be-4d99-9ce2-d6c15502e9ac" ], + "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-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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:23:55 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:38:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:10:15.0324102Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?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/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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "x-ms-unique-id": [ "396", "397", "398" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1167,39 +1287,39 @@ "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": [ "b504d9ec-cf66-46e2-9fc8-b564ecfae4c0" ], - "x-ms-correlation-request-id": [ "a29e3f8c-5210-465a-aef5-fb5c2dc5be56" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172427Z:a29e3f8c-5210-465a-aef5-fb5c2dc5be56" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:24:26 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:39:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "465" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"name\":\"6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c\",\"status\":\"Succeeded\",\"startTime\":\"2020-03-29T17:10:14.454269Z\",\"endTime\":\"2020-03-29T17:24:24.2226858Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"0cdde1f5-c58c-4def-9e5f-7a95e9739fe9\",\"provisioningState\":\"Succeeded\"}}" + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?api-version=2020-02-15\u0026operationResultResponseType=Location+30": { + "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/6418be54-ae7c-43c1-bfbd-6a1a9cf2a70c?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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153" ], - "x-ms-client-request-id": [ "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03", "80088102-c0b8-4b74-b370-8dfe9446eb03" ], - "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" ], + "x-ms-unique-id": [ "396", "397", "398", "399" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1208,63 +1328,433 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "871c67ce-29f5-4296-ac3c-9ea43463c416" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-correlation-request-id": [ "8d8b6cba-5443-4d78-9c09-c2ca7d8bc60d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172427Z:8d8b6cba-5443-4d78-9c09-c2ca7d8bc60d" ], + "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": [ "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": [ "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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:24:27 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:40:13 GMT" ] }, "ContentHeaders": { - "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/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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+32": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "c6c2ef44-df42-4cb1-8924-58b5e3b3eb92" ], - "CommandName": [ "Get-AzKustoCluster" ], - "FullCommandName": [ "Get-AzKustoCluster_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "18ad477f-4454-4cd0-b4a9-8ece60fe88c3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-correlation-request-id": [ "5e261880-afcb-4eea-a329-a562dbbb2c33" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T172427Z:5e261880-afcb-4eea-a329-a562dbbb2c33" ], + "Vary": [ "Accept-Encoding" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T004043Z:747db6eb-0408-474d-9b0c-8517755a9b18" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:24:27 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:42:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "227" ], + "Content-Length": [ "492" ], "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\u0027 is not found.\"}}" + "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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407", "408" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "983887cb-ac35-4435-a408-bc9528716ce2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:44: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/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/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/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "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": [ "Mon, 03 Aug 2020 00:44:15 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/Remove-AzKustoCluster.Tests.ps1 b/src/Kusto/test/Remove-AzKustoCluster.Tests.ps1 index a4d195290c55..7f731290c73a 100644 --- a/src/Kusto/test/Remove-AzKustoCluster.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoCluster.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoCluster.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -15,6 +15,8 @@ while(-not $mockingPath) { Describe 'Remove-AzKustoCluster' { It 'Delete' { - { Remove-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $env.clusterName } | Should -Not -Throw + $name = "testcluster" + $env.rstr4 + New-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $name -Location $env.location -SkuName $env.skuName -SkuTier $env.skuTier + { Remove-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $name } | Should -Not -Throw } } diff --git a/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json index 125d35350e83..6847f4656a6d 100644 --- a/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json +++ b/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json @@ -1,17 +1,10 @@ { - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/removeLanguageExtensions?api-version=2020-02-15+1": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/removeLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"R\"\r\n }\r\n ]\r\n}", "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "ebab0e83-79e3-4e19-8d35-617b482ae1cc" ], - "CommandName": [ "Remove-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -21,39 +14,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b2276322-8b5b-4dd7-bef5-fd52d0f5c73e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3790672-4dc0-41d4-b727-ad740f6c2816?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "715d639c-0695-4cec-a1a2-ec5b597ff970" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221241Z:715d639c-0695-4cec-a1a2-ec5b597ff970" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:12:41 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3790672-4dc0-41d4-b727-ad740f6c2816?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:44:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3790672-4dc0-41d4-b727-ad740f6c2816?api-version=2020-02-15+2": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3790672-4dc0-41d4-b727-ad740f6c2816?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "50", "51" ], - "x-ms-client-request-id": [ "ebab0e83-79e3-4e19-8d35-617b482ae1cc", "ebab0e83-79e3-4e19-8d35-617b482ae1cc" ], + "x-ms-unique-id": [ "410", "411" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,39 +55,39 @@ "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": [ "f74f52f0-3967-472f-a459-d7f587d29c21" ], - "x-ms-correlation-request-id": [ "161e1bbc-98c8-4702-bb82-e835bfd7a125" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221311Z:161e1bbc-98c8-4702-bb82-e835bfd7a125" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:13:11 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:44:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3790672-4dc0-41d4-b727-ad740f6c2816\",\"name\":\"d3790672-4dc0-41d4-b727-ad740f6c2816\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T22:12:41.0246302Z\",\"endTime\":\"2020-04-07T22:12:44.5090194Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"e2294001-1a40-4269-9310-57bcc66c37b4\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/55f8d844-7ff6-4485-a6ff-b286f9882e1a\",\"name\":\"55f8d844-7ff6-4485-a6ff-b286f9882e1a\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:44:16.2758443Z\",\"endTime\":\"2020-08-03T00:44:21.4794015Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"07687298-825e-44a1-86c8-ddd5112ba8b0\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3790672-4dc0-41d4-b727-ad740f6c2816?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3790672-4dc0-41d4-b727-ad740f6c2816?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "50", "51", "52" ], - "x-ms-client-request-id": [ "ebab0e83-79e3-4e19-8d35-617b482ae1cc", "ebab0e83-79e3-4e19-8d35-617b482ae1cc", "ebab0e83-79e3-4e19-8d35-617b482ae1cc" ], + "x-ms-unique-id": [ "410", "411", "412" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -103,37 +96,37 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "12a530ec-1939-4dc2-8391-ad679add0468" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "941a8ef9-954f-4c48-93ae-9e2ba04f59ed" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221311Z:941a8ef9-954f-4c48-93ae-9e2ba04f59ed" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:13:11 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:44:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "68e05e27-d47f-44b0-89a4-2a77109236ec" ], + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "99dbc15d-1015-4786-b6ad-6876b491c843" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -142,41 +135,34 @@ "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": [ "dcca6fb4-50ed-4d59-b189-1289a1733f7b" ], - "x-ms-correlation-request-id": [ "6adf727a-2239-4b7c-9d81-fe766ffcc36c" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221312Z:6adf727a-2239-4b7c-9d81-fe766ffcc36c" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:13:11 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:44:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "785" ], + "Content-Length": [ "828" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/removeLanguageExtensions?api-version=2020-02-15+2": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/removeLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"PYTHON\"\r\n }\r\n ]\r\n}", "Headers": { - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b" ], - "CommandName": [ "Remove-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -186,39 +172,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "22709e44-3891-4a97-a610-13beb36abac7" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "17284e92-6f89-4876-867f-d23dcb451872" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221312Z:17284e92-6f89-4876-867f-d23dcb451872" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:13:12 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:44:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+3": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -227,39 +213,39 @@ "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": [ "ec63ca85-2644-4def-8218-01f7a4fc097a" ], - "x-ms-correlation-request-id": [ "b503cfec-194a-4879-80c6-fc3b4dfab2a3" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221342Z:b503cfec-194a-4879-80c6-fc3b4dfab2a3" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:13:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:45:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+4": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55", "56" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415", "416" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -268,39 +254,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "3b047cf2-0cab-480d-adb7-2eb133fd4311" ], - "x-ms-request-id": [ "ecdfac40-bbb7-4878-8972-31b4603d4c5e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221413Z:3b047cf2-0cab-480d-adb7-2eb133fd4311" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "d7f15482-8a5f-4dae-9c05-39cbdfff1d85" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:14:12 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:45:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+5": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415", "416", "417" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -309,39 +295,39 @@ "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": [ "3b992104-c04a-47e6-8ebb-279cd9728020" ], - "x-ms-correlation-request-id": [ "53d8c2a7-5e3f-4f13-b638-197dea5140e1" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221443Z:53d8c2a7-5e3f-4f13-b638-197dea5140e1" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:14:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:46:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+6": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415", "416", "417", "418" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -350,39 +336,39 @@ "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": [ "f95b8cb7-2f1d-4295-90fa-83a74ba62455" ], - "x-ms-correlation-request-id": [ "ca7bd493-6dd1-4ab5-8aec-cdb615e3fea3" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221514Z:ca7bd493-6dd1-4ab5-8aec-cdb615e3fea3" ], + "x-ms-correlation-request-id": [ "5b2bbfd8-9a57-4f29-84d2-c89cc1fa2a9d" ], + "x-ms-request-id": [ "f962103b-bd26-48b0-a26f-4e3d94cb20ef" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004648Z:5b2bbfd8-9a57-4f29-84d2-c89cc1fa2a9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:15:14 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:46:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+7": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -391,39 +377,39 @@ "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": [ "0c6c6883-c53a-44d5-8c43-3775d2c44a74" ], - "x-ms-correlation-request-id": [ "13ed80d0-0daf-49ed-9452-162feebe7926" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221544Z:13ed80d0-0daf-49ed-9452-162feebe7926" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:15:44 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:47:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+8": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59", "60" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -432,39 +418,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "1b2e0446-aa46-4a66-88fa-f5fb0d3884e6" ], - "x-ms-request-id": [ "3faf970e-2c1e-48fb-926c-4c9dfbaa0607" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221614Z:1b2e0446-aa46-4a66-88fa-f5fb0d3884e6" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:16:13 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:47:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+9": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59", "60", "61" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420", "421" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -473,162 +459,39 @@ "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": [ "23e2b6b3-baa7-4f8f-a2d0-9693c751ba5c" ], - "x-ms-correlation-request-id": [ "0c3f4b69-ff34-4827-896e-d0b768b07db0" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221645Z:0c3f4b69-ff34-4827-896e-d0b768b07db0" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:16:44 GMT" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:48:18 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/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"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/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+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/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59", "60", "61", "62" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], + "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420", "421", "422" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-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": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "3ed730ec-e2ef-4645-b043-22cd37f3a916" ], - "x-ms-correlation-request-id": [ "8d5c6ac6-03c0-43f8-89a1-f96088ed9745" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221715Z:8d5c6ac6-03c0-43f8-89a1-f96088ed9745" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:17:14 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "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/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59", "60", "61", "62", "63" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], - "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": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "c13e37f4-fd08-4215-ac49-c617c4c339d5" ], - "x-ms-correlation-request-id": [ "00403ef4-93be-4531-ac76-9a001378adc2" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221745Z:00403ef4-93be-4531-ac76-9a001378adc2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:17:45 GMT" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "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/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+12": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], - "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "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", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], - "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": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "29283470-af00-4eec-b7ae-29b786887ff9" ], - "x-ms-request-id": [ "c971f24a-704a-47a2-9d93-f42f42386f15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221816Z:29283470-af00-4eec-b7ae-29b786887ff9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:18:15 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "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/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:13:13.8526907Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15+13": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], - "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "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", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], - "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -637,62 +500,21 @@ "Response": { "StatusCode": 200, "Headers": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "2d5ff8c1-0f13-4676-8c0a-eb7df0cba7b0" ], - "x-ms-correlation-request-id": [ "93571120-c9de-4420-9ff6-5b9a92299a09" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221846Z:93571120-c9de-4420-9ff6-5b9a92299a09" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:18:46 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "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/660378d6-a946-41c6-bed1-2dec4046083a\",\"name\":\"660378d6-a946-41c6-bed1-2dec4046083a\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T22:13:12.5557704Z\",\"endTime\":\"2020-04-07T22:18:41.1694803Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"94f33a8d-75c1-455c-8528-fbe49c580ffa\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15\u0026operationResultResponseType=Location+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/660378d6-a946-41c6-bed1-2dec4046083a?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66" ], - "x-ms-client-request-id": [ "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b", "dfcd390e-d11c-44d3-98a8-739797d2791b" ], - "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "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", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], - "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": { "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4e1030c3-88f1-4d55-acf1-f30af02a16d5" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-correlation-request-id": [ "23e87e93-9f1f-46db-8377-b9a88f91db57" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T221847Z:23e87e93-9f1f-46db-8377-b9a88f91db57" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:18:46 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:48:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } diff --git a/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Tests.ps1 b/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Tests.ps1 index 1811fd422b58..e3623fcbe324 100644 --- a/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoClusterLanguageExtension.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -16,7 +16,7 @@ Describe 'Remove-AzKustoClusterLanguageExtension' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - { Remove-AzKustoClusterLanguageExtension -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Value (@{Name=$env.langExt1}) } | Should -Not -Throw + { Remove-AzKustoClusterLanguageExtension -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Value (@{Name = $env.langExt1 }) } | Should -Not -Throw } It 'RemoveViaIdentityExpanded' { @@ -25,6 +25,6 @@ Describe 'Remove-AzKustoClusterLanguageExtension' { $clusterGetItem = Get-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName - { Remove-AzKustoClusterLanguageExtension -InputObject $clusterGetItem -Value (@{Name=$env.langExt2}) } | Should -Not -Throw + { Remove-AzKustoClusterLanguageExtension -InputObject $clusterGetItem -Value (@{Name = $env.langExt2 }) } | Should -Not -Throw } } diff --git a/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json index d0146037222f..0bedcea028bf 100644 --- a/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json +++ b/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json @@ -1,16 +1,136 @@ { - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "151" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "x-ms-request-id": [ "61e11ce9-b6c2-40b6-88fc-4cfa07c0cbe6" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6e38876a-876b-4f47-82e8-0b33af6c5e46?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], + "x-ms-correlation-request-id": [ "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": [ "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/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/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/6e38876a-876b-4f47-82e8-0b33af6c5e46?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "423", "424", "425" ], + "x-ms-client-request-id": [ "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" ], + "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": [ "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": [ "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": [ "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/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/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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "271" ], - "x-ms-client-request-id": [ "7f08db39-2275-43ff-b13a-c217fdbd0302" ], + "x-ms-unique-id": [ "426" ], + "x-ms-client-request-id": [ "13f3bdfe-1a79-414d-a62a-74f4a672a5cf" ], "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +139,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f3c94394-e6f0-47c5-84c5-987bd6998c20?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "524df65e-d3cb-4ca6-926e-5bdf47a453c5" ], - "x-ms-correlation-request-id": [ "524df65e-d3cb-4ca6-926e-5bdf47a453c5" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152816Z:524df65e-d3cb-4ca6-926e-5bdf47a453c5" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:28:16 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f3c94394-e6f0-47c5-84c5-987bd6998c20?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:48:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f3c94394-e6f0-47c5-84c5-987bd6998c20?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/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/f3c94394-e6f0-47c5-84c5-987bd6998c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "271", "272" ], - "x-ms-client-request-id": [ "7f08db39-2275-43ff-b13a-c217fdbd0302", "7f08db39-2275-43ff-b13a-c217fdbd0302" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +180,39 @@ "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": [ "40895027-ed1f-4cdc-b3d6-79e8d268b8b6" ], - "x-ms-correlation-request-id": [ "0e952713-a4f7-4a04-ad43-79a7ac95164c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152847Z:0e952713-a4f7-4a04-ad43-79a7ac95164c" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:28:46 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:49:23 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/f3c94394-e6f0-47c5-84c5-987bd6998c20\",\"name\":\"f3c94394-e6f0-47c5-84c5-987bd6998c20\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-02T15:28:16.7853544Z\",\"endTime\":\"2020-04-02T15:28:18.6759881Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"6e612e77-fc89-483d-8b48-98d0247d9329\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65\",\"name\":\"bc119d3f-6e1d-4b67-8b90-ea56228ffb65\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:48:53.5204371Z\",\"endTime\":\"2020-08-03T00:48:56.0519014Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"136845d6-5862-4616-a22f-74c8713da161\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f3c94394-e6f0-47c5-84c5-987bd6998c20?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "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/f3c94394-e6f0-47c5-84c5-987bd6998c20?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "271", "272", "273" ], - "x-ms-client-request-id": [ "7f08db39-2275-43ff-b13a-c217fdbd0302", "7f08db39-2275-43ff-b13a-c217fdbd0302", "7f08db39-2275-43ff-b13a-c217fdbd0302" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,21 +221,21 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3143cb53-6ac0-4635-9920-a7f3a0ea2f0e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "6f5d8883-3b82-4c3d-b510-f9f09f23ff1a" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T152847Z:6f5d8883-3b82-4c3d-b510-f9f09f23ff1a" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:28:46 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:49:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } diff --git a/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Tests.ps1 b/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Tests.ps1 index 49694729c930..e5140d0e2732 100644 --- a/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoClusterPrincipalAssignment.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -17,8 +17,12 @@ Describe 'Remove-AzKustoClusterPrincipalAssignment' { It 'Delete' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - $principalAssignmentName = $env.principalAssignmentName + $principalAssignmentName = $env.principalAssignmentName1 + $principalId = $env.principalId1 + $role = $env.principalRole + $principalType = $env.principalType + New-AzKustoClusterPrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $principalAssignmentName -PrincipalId $principalId -PrincipalType $principalType -Role $role { Remove-AzKustoClusterPrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $principalAssignmentName } | Should -Not -Throw } } diff --git a/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json b/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json index c3e1d7636af1..00de68cd9418 100644 --- a/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json @@ -1,16 +1,16 @@ { - "Remove-AzKustoDataConnection+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+1": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "b9845209-6490-4867-9318-76fd82e0ce48" ], + "x-ms-unique-id": [ "444" ], + "x-ms-client-request-id": [ "e97309bd-05c2-45de-92af-51e894464c81" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +19,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b4fa587a-623d-4bef-ba6c-6313445f5204?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "a38c1e0e-fb58-4311-87fe-96ba0235cb95" ], - "x-ms-correlation-request-id": [ "a38c1e0e-fb58-4311-87fe-96ba0235cb95" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T084653Z:a38c1e0e-fb58-4311-87fe-96ba0235cb95" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], + "x-ms-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:46:53 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b4fa587a-623d-4bef-ba6c-6313445f5204?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:51:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "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/b4fa587a-623d-4bef-ba6c-6313445f5204?api-version=2020-02-15+2": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b4fa587a-623d-4bef-ba6c-6313445f5204?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21" ], - "x-ms-client-request-id": [ "b9845209-6490-4867-9318-76fd82e0ce48", "b9845209-6490-4867-9318-76fd82e0ce48" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +60,39 @@ "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": [ "a4bd2cee-67a1-48dd-9ab7-c87e8e96998f" ], - "x-ms-correlation-request-id": [ "62ee204a-c836-482d-a4d2-d11b6e188405" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T084723Z:62ee204a-c836-482d-a4d2-d11b6e188405" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:47:23 GMT" ], - "Set-Cookie": [ "ARRAffinity=de41295b4360a9ab17ddc0530c031200492ec580fe649e0e2606c200e0b6cb04;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:52:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b4fa587a-623d-4bef-ba6c-6313445f5204\",\"name\":\"b4fa587a-623d-4bef-ba6c-6313445f5204\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T08:46:53.5701799Z\",\"endTime\":\"2020-04-05T08:46:54.3670094Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"a6b01118-440d-42a6-87ad-42b074288c36\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cd111729-9837-424f-b549-290e5e14b438\",\"name\":\"cd111729-9837-424f-b549-290e5e14b438\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:51:31.5937439Z\",\"endTime\":\"2020-08-03T00:51:32.5625918Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"5248fafd-d11e-4476-bbda-bc9a1e75ea72\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b4fa587a-623d-4bef-ba6c-6313445f5204?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b4fa587a-623d-4bef-ba6c-6313445f5204?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "20", "21", "22" ], - "x-ms-client-request-id": [ "b9845209-6490-4867-9318-76fd82e0ce48", "b9845209-6490-4867-9318-76fd82e0ce48", "b9845209-6490-4867-9318-76fd82e0ce48" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,23 +101,143 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "50c85ba8-f9f4-4f1b-8630-a77c71afac9a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "3520ed46-d388-41ae-8022-af07e1e8ee67" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T084724Z:3520ed46-d388-41ae-8022-af07e1e8ee67" ], + "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/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/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": 201, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:47:23 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "x-ms-request-id": [ "3d46eb10-2fde-434a-81c7-e2c4593c29bf" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d007877c-5bc8-4f3c-833d-69ead6ab3328?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:52:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "680" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": null + "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/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/d007877c-5bc8-4f3c-833d-69ead6ab3328?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:52:33 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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "447", "448", "449" ], + "x-ms-client-request-id": [ "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" ], + "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": [ "54911dba-b049-42bf-8ef2-5ebc2dc8d3f0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:52:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "770" ], + "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\":\"\",\"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 3487bac3d2fb..93c4c16e5569 100644 --- a/src/Kusto/test/Remove-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoDataConnection.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoDataConnection.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -15,11 +15,18 @@ while(-not $mockingPath) { Describe 'Remove-AzKustoDataConnection' { It 'Delete' { + $subscriptionId = $env.SubscriptionId + $location = $env.location $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName + $eventhubNS = $env.eventhubNSName + $eventhub = $env.eventhubName + $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" + $kind = "EventHub" - { Remove-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName } | Should -Not -Throw + 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 -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 3da8fec554fd..c8bb10b7080e 100644 --- a/src/Kusto/test/Remove-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDatabase.Recording.json @@ -1,57 +1,53 @@ { - "Remove-AzKustoDatabase+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", - "Content": null, + "Method": "PUT", + "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": { - "x-ms-unique-id": [ "708" ], - "x-ms-client-request-id": [ "2d4a9f78-2290-461f-882d-7c0a693cf684" ], - "CommandName": [ "Remove-AzKustoDatabase" ], - "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "53" ] } }, "Response": { - "StatusCode": 202, + "StatusCode": 201, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "91ccb1d8-c213-49b0-b68e-87812f779519" ], - "x-ms-correlation-request-id": [ "91ccb1d8-c213-49b0-b68e-87812f779519" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T211449Z:91ccb1d8-c213-49b0-b68e-87812f779519" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 21:14:49 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:49:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "363" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": null + "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/c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4?api-version=2020-02-15+2": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f0006420-84e2-473a-874f-6982a68136a2?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f0006420-84e2-473a-874f-6982a68136a2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "708", "709" ], - "x-ms-client-request-id": [ "2d4a9f78-2290-461f-882d-7c0a693cf684", "2d4a9f78-2290-461f-882d-7c0a693cf684" ], - "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], - "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +56,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "db528dbc-0c5f-48a1-8785-92d5457ff66f" ], - "x-ms-request-id": [ "7fd4a05c-e594-4c10-80df-a0df5cb9f643" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T211519Z:db528dbc-0c5f-48a1-8785-92d5457ff66f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 21:15:19 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:49:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4\",\"name\":\"c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4\",\"status\":\"Succeeded\",\"startTime\":\"2020-03-29T21:14:49.4411043Z\",\"endTime\":\"2020-03-29T21:14:52.7692652Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"ec3e782f-c733-4cf5-8f15-5a3f3f5b6976\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f0006420-84e2-473a-874f-6982a68136a2\",\"name\":\"f0006420-84e2-473a-874f-6982a68136a2\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:49:24.8594456Z\",\"endTime\":\"2020-08-03T00:49:26.5002911Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"14f5ebe6-c64c-4379-8833-878ed8a83231\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4?api-version=2020-02-15\u0026operationResultResponseType=Location+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/providers/Microsoft.Kusto/locations/East%20US/operationResults/c8642c28-891a-4dcf-8a89-f7c3f6fd2cc4?api-version=2020-02-15\u0026operationResultResponseType=Location", + "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": [ "708", "709", "710" ], - "x-ms-client-request-id": [ "2d4a9f78-2290-461f-882d-7c0a693cf684", "2d4a9f78-2290-461f-882d-7c0a693cf684", "2d4a9f78-2290-461f-882d-7c0a693cf684" ], - "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], - "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,63 +97,147 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ad078592-0a11-4267-9cb0-529805127ba8" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-correlation-request-id": [ "fee55f7d-d629-4542-a6b2-a68eddc75eaa" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T211520Z:fee55f7d-d629-4542-a6b2-a68eddc75eaa" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 21:15:20 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:49:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "471" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": null + "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+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+4": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+4": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "Method": "DELETE", + "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": [ "711" ], - "x-ms-client-request-id": [ "e437bac0-685f-448a-aed2-752ec73b8a9c" ], - "CommandName": [ "Get-AzKustoDatabase" ], - "FullCommandName": [ "Get-AzKustoDatabase_Get" ], + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "9b592192-c1c3-441f-9c9c-854dada9323f" ], + "CommandName": [ "Remove-AzKustoDatabase" ], + "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a86cf3f9-06cb-466c-9b6e-2c24ea1d74bc" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-correlation-request-id": [ "f9b2c11c-27d2-4e8c-9f7e-c9bbb2b35cae" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T211520Z:f9b2c11c-27d2-4e8c-9f7e-c9bbb2b35cae" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:49:55 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 21:15:20 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:50:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "253" ], + "Content-Length": [ "496" ], "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\u0027 is not found.\"}}" + "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/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/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "432", "433", "434" ], + "x-ms-client-request-id": [ "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:50:26 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/Remove-AzKustoDatabase.Tests.ps1 b/src/Kusto/test/Remove-AzKustoDatabase.Tests.ps1 index 55f7df8ae5db..d9cea24c7d40 100644 --- a/src/Kusto/test/Remove-AzKustoDatabase.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoDatabase.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoDatabase.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -15,6 +15,8 @@ while(-not $mockingPath) { Describe 'Remove-AzKustoDatabase' { It 'Delete' { - { Remove-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $env.databaseName } | Should -Not -Throw + $name = "testdatabase" + $env.rstr4 + New-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $name -Kind ReadWrite -Location $env.location + { Remove-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $env.clusterName -Name $name } | Should -Not -Throw } } diff --git a/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json b/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json index 860015c34753..643dffcf8692 100644 --- a/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json @@ -1,16 +1,16 @@ { - "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/listPrincipals?api-version=2020-02-15+1": { + "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/listPrincipals?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "921f86b5-34a5-4842-b403-d78ee67ebd0d" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "2bdd699a-d853-4336-a8a5-877143eba8ce" ], "CommandName": [ "Get-AzKustoDatabasePrincipal" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipal_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,68 +19,97 @@ "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": [ "e59a8e59-80d1-4561-a67e-2c5e556f0fa3" ], - "x-ms-correlation-request-id": [ "a42d9ce8-4d1f-4b90-a8f2-3a7738d19669" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200408T001651Z:a42d9ce8-4d1f-4b90-a8f2-3a7738d19669" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 08 Apr 2020 00:16:50 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:50:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "661" ], + "Content-Length": [ "459" ], "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\"},{\"name\":\"lugoldbekusto\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=e60fe5c8-d6a5-4dee-b382-fb4502588dd0;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"tenantName\":\"Microsoft\"},{\"name\":\"Lucy Goldberg\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=4140ca90-d0db-4781-ab7a-099ece50e2fa;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"lugoldbe@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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/removePrincipals?api-version=2020-02-15+2": { + "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/removePrincipals?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/removePrincipals?api-version=2020-02-15", - "Content": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Royi Shauli\",\r\n \"type\": \"User\",\r\n \"email\": \"roshauli@microsoft.com\",\r\n \"role\": \"Admin\"\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": { - "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "c7f36394-6282-43cf-b82c-c0355c7f3ef2" ], - "CommandName": [ "Remove-AzKustoDatabasePrincipal" ], - "FullCommandName": [ "Remove-AzKustoDatabasePrincipal_RemoveExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "155" ] + "Content-Length": [ "175" ] } }, "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": [ "4d1476d7-c5e0-4185-b91c-c94e59ec2416" ], - "x-ms-correlation-request-id": [ "85624ca0-deb1-4c30-99f8-905d2ed6fa62" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200408T001652Z:85624ca0-deb1-4c30-99f8-905d2ed6fa62" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:50:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "248" ], + "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\"}]}" + } + }, + "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/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": [ "175" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 08 Apr 2020 00:16:51 GMT" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:50:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "450" ], + "Content-Length": [ "459" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"name\":\"lugoldbekusto\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=e60fe5c8-d6a5-4dee-b382-fb4502588dd0;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"tenantName\":\"Microsoft\"},{\"name\":\"Lucy Goldberg\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=4140ca90-d0db-4781-ab7a-099ece50e2fa;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"lugoldbe@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-AzKustoDatabasePrincipal.Tests.ps1 b/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Tests.ps1 index 156acb225eca..695735c6f45e 100644 --- a/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoDatabasePrincipal.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -20,6 +20,7 @@ Describe 'Remove-AzKustoDatabasePrincipal' { [array]$databasePrincipals = Get-AzKustoDatabasePrincipal -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName $databasePrincipal = $databasePrincipals[0] - { Remove-AzKustoDatabasePrincipal -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Value (@{Name=$databasePrincipal.Name; Role=$databasePrincipal.Role; Type=$databasePrincipal.Type; Email=$databasePrincipal.Email}) } | Should -Not -Throw + { Remove-AzKustoDatabasePrincipal -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Value (@{Name = $databasePrincipal.Name; Role = $databasePrincipal.Role; Type = $databasePrincipal.Type; Email = $databasePrincipal.Email; AppId = $databasePrincipal.AppId }) } | Should -Not -Throw + { Add-AzKustoDatabasePrincipal -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Value (@{Name = $databasePrincipal.Name; Role = $databasePrincipal.Role; Type = $databasePrincipal.Type; Email = $databasePrincipal.Email; AppId = $databasePrincipal.AppId }) } | Should -Not -Throw } } diff --git a/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json index 9f7207cd42d0..5e6304f8b7fd 100644 --- a/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json @@ -1,16 +1,136 @@ { - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "139" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "x-ms-request-id": [ "ee5b1782-870d-408f-917c-2b618337de85" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d7401f19-8480-4325-ad8f-8ef42695b483?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], + "x-ms-correlation-request-id": [ "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": [ "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/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/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/d7401f19-8480-4325-ad8f-8ef42695b483?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 00:50:59 GMT" ] + }, + "ContentHeaders": { + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "438", "439", "440" ], + "x-ms-client-request-id": [ "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" ], + "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": [ "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": [ "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": [ "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/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/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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "f02a49b6-da00-4e31-8276-8ee6017e60ec" ], + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "866f7e34-7092-4085-bbed-19329fc71338" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +139,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7d34a802-a789-4085-9d1b-60284c98fe57?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ "4f114718-af79-48f4-a589-c8f8e77deef9" ], - "x-ms-correlation-request-id": [ "4f114718-af79-48f4-a589-c8f8e77deef9" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155613Z:4f114718-af79-48f4-a589-c8f8e77deef9" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], + "x-ms-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:56:12 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7d34a802-a789-4085-9d1b-60284c98fe57?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=ad966661f28345a7a82e0f5252ddeee3454342c1fc885732f7b3a5976e5da774;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:51:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7d34a802-a789-4085-9d1b-60284c98fe57?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/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/7d34a802-a789-4085-9d1b-60284c98fe57?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "284", "285" ], - "x-ms-client-request-id": [ "f02a49b6-da00-4e31-8276-8ee6017e60ec", "f02a49b6-da00-4e31-8276-8ee6017e60ec" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +180,39 @@ "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": [ "7a7ca6ee-b958-42b0-9b20-0a966ff31a79" ], - "x-ms-correlation-request-id": [ "c37f87de-f1cc-41cb-a6b6-4a14a34815de" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155643Z:c37f87de-f1cc-41cb-a6b6-4a14a34815de" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:56:43 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:51:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7d34a802-a789-4085-9d1b-60284c98fe57\",\"name\":\"7d34a802-a789-4085-9d1b-60284c98fe57\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-02T15:56:12.9019807Z\",\"endTime\":\"2020-04-02T15:56:13.0113497Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"ce05de59-4c82-44b1-883d-56a58a85053b\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e7a7c0d-c333-4706-926d-1c75efb7979f\",\"name\":\"2e7a7c0d-c333-4706-926d-1c75efb7979f\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:51:00.4269949Z\",\"endTime\":\"2020-08-03T00:51:00.5051673Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"93e6368d-7881-4739-bfa3-d341be8582fd\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7d34a802-a789-4085-9d1b-60284c98fe57?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "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/7d34a802-a789-4085-9d1b-60284c98fe57?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "284", "285", "286" ], - "x-ms-client-request-id": [ "f02a49b6-da00-4e31-8276-8ee6017e60ec", "f02a49b6-da00-4e31-8276-8ee6017e60ec", "f02a49b6-da00-4e31-8276-8ee6017e60ec" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,21 +221,21 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0a056690-f9e3-4856-a0af-cf06033a613f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "17ea2160-706a-423d-9dc8-eb44eaf68424" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200402T155643Z:17ea2160-706a-423d-9dc8-eb44eaf68424" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 02 Apr 2020 15:56:43 GMT" ], - "Set-Cookie": [ "ARRAffinity=ad966661f28345a7a82e0f5252ddeee3454342c1fc885732f7b3a5976e5da774;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 00:51:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } diff --git a/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Tests.ps1 b/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Tests.ps1 index 8c66e2414242..13604cafc87b 100644 --- a/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzKustoDatabasePrincipalAssignment.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -18,8 +18,12 @@ Describe 'Remove-AzKustoDatabasePrincipalAssignment' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $principalAssignmentName = $env.principalAssignmentName + $principalAssignmentName = $env.principalAssignmentName1 + $principalId = $env.principalId1 + $role = $env.databasePrincipalRole + $principalType = $env.principalType - { Remove-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -PrincipalAssignmentName $principalAssignmentName} | Should -Not -Throw + New-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $principalAssignmentName -DatabaseName $databaseName -PrincipalId $principalId -PrincipalType $principalType -Role $role + { Remove-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -PrincipalAssignmentName $principalAssignmentName } | Should -Not -Throw } } diff --git a/src/Kusto/test/Start-AzKustoCluster.Recording.json b/src/Kusto/test/Start-AzKustoCluster.Recording.json index 08a0d6675652..f47d4f0ccb22 100644 --- a/src/Kusto/test/Start-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Start-AzKustoCluster.Recording.json @@ -1,16 +1,2102 @@ { - "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/start?api-version=2020-02-15+1": { + "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/start?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "94632f79-497e-409c-be5a-4816d5378dea" ], + "x-ms-unique-id": [ "450" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328" ], + "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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "5ca4b91e-0417-46eb-999c-316b274e187f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 00:52:34 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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-routing-request-id": [ "NORTHEUROPE:20200803T005304Z:da136720-ecfb-40ae-b93d-58cb2673dcf1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452" ], + "x-ms-client-request-id": [ "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" ], + "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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453" ], + "x-ms-client-request-id": [ "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" ], + "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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "a3471662-9a25-4ba6-a839-318fc03c8e06" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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-routing-request-id": [ "NORTHEUROPE:20200803T005908Z:844416ed-edaa-44cc-9654-5e18a4a642d6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:00:38 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/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/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/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467" ], + "x-ms-client-request-id": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "4914685e-96f8-4f54-bb77-f141f8536451" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "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": [ "Mon, 03 Aug 2020 01:00:39 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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14+19": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": 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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "08d57916-0b1c-4b2e-8629-c65b9c10d196" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 01:00:39 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "17902427-7eb2-4030-961c-c266f46a26d8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 01:01: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:01: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:02: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:02: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:03: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:03: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:04: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "faab927b-60c6-4206-9160-435469c219af" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-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": [ "Mon, 03 Aug 2020 01:04: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:07: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:07: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "9b209b94-0227-4674-9fe0-0518f96bac48" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 01:08: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/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/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:08:44 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/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:08:36.322055Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0479efee-5602-4a89-a28e-5fa9851b8239" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "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": [ "Mon, 03 Aug 2020 01:08:44 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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:08:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "794" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4\",\"name\":\"testclusterv76dg4\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterv76dg4.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterv76dg4.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" + } + }, + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": 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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "b35f0ec6-e137-4db6-ae45-cfe47c5d43ba" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "x-ms-correlation-request-id": [ "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": [ "Mon, 03 Aug 2020 01:08:45 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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T011116Z:c8e7f7e8-5b1d-4102-8a0e-5698f69cf60f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "7bf8b3b8-4bff-455c-abdb-718636a56b7e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], "CommandName": [ "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +2105,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3ebfa1e7-0355-4e42-ab7c-c5c38a3f4728" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0d799d4b-4fe0-488d-87a5-d19382ec9003?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "ef158a92-44bd-4a23-9597-9107a99dc9ee" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220504Z:ef158a92-44bd-4a23-9597-9107a99dc9ee" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:05:03 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0d799d4b-4fe0-488d-87a5-d19382ec9003?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0d799d4b-4fe0-488d-87a5-d19382ec9003?api-version=2020-02-15+2": { + "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/0d799d4b-4fe0-488d-87a5-d19382ec9003?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "39", "40" ], - "x-ms-client-request-id": [ "94632f79-497e-409c-be5a-4816d5378dea", "94632f79-497e-409c-be5a-4816d5378dea" ], + "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_Start", "Start-AzKustoCluster_Start" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +2146,39 @@ "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": [ "bacea889-dca9-4371-a3bf-073ba4f2c30f" ], - "x-ms-correlation-request-id": [ "5ee7510c-7efc-4e63-a3df-75cf1a444a20" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220534Z:5ee7510c-7efc-4e63-a3df-75cf1a444a20" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:05:33 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:15: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/0d799d4b-4fe0-488d-87a5-d19382ec9003\",\"name\":\"0d799d4b-4fe0-488d-87a5-d19382ec9003\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:05:04.0392904Z\",\"endTime\":\"2020-04-07T22:05:04.6955542Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"c424ff76-6aa2-4556-843b-8b45f9999b31\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0d799d4b-4fe0-488d-87a5-d19382ec9003?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/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/0d799d4b-4fe0-488d-87a5-d19382ec9003?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "39", "40", "41" ], - "x-ms-client-request-id": [ "94632f79-497e-409c-be5a-4816d5378dea", "94632f79-497e-409c-be5a-4816d5378dea", "94632f79-497e-409c-be5a-4816d5378dea" ], + "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_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,39 +2187,39 @@ "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": [ "0becf177-b0ec-408a-af27-b1172f19bf88" ], - "x-ms-correlation-request-id": [ "44fadfe8-5275-4bd3-9cbc-f356aa2a107d" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220604Z:44fadfe8-5275-4bd3-9cbc-f356aa2a107d" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:06:04 GMT" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:15:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "465" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0d799d4b-4fe0-488d-87a5-d19382ec9003\",\"name\":\"0d799d4b-4fe0-488d-87a5-d19382ec9003\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T22:05:04.0392904Z\",\"endTime\":\"2020-04-07T22:05:38.452378Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"c424ff76-6aa2-4556-843b-8b45f9999b31\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0d799d4b-4fe0-488d-87a5-d19382ec9003?api-version=2020-02-15\u0026operationResultResponseType=Location+4": { + "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/0d799d4b-4fe0-488d-87a5-d19382ec9003?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "39", "40", "41", "42" ], - "x-ms-client-request-id": [ "94632f79-497e-409c-be5a-4816d5378dea", "94632f79-497e-409c-be5a-4816d5378dea", "94632f79-497e-409c-be5a-4816d5378dea", "94632f79-497e-409c-be5a-4816d5378dea" ], + "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_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -142,37 +2228,80 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "de9d3096-9ebd-4015-be11-c6541197a998" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-correlation-request-id": [ "d3005a65-046b-437b-886f-ad98b26b752a" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220604Z:d3005a65-046b-437b-886f-ad98b26b752a" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:06:04 GMT" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:16:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "492" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "ba062ed9-4787-4a30-811a-acc4e392d672" ], - "CommandName": [ "Get-AzKustoCluster" ], - "FullCommandName": [ "Get-AzKustoCluster_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -181,81 +2310,203 @@ "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": [ "8198110b-eec2-4585-93a5-88a336182b71" ], - "x-ms-correlation-request-id": [ "d35dbae6-3511-4015-b5e4-aab0c97f5ad4" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220605Z:d35dbae6-3511-4015-b5e4-aab0c97f5ad4" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T011720Z:34a5f6c8-23b5-43a7-b874-f22813c76e82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:06:05 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:17:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "815" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"R\"},{\"languageExtensionName\":\"PYTHON\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/start?api-version=2020-02-15+2": { + "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": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742" ], - "CommandName": [ "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5a4e5cb3-e71e-4dd8-8a6c-fc818bc00400" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "95fdb2c2-09c8-4b7f-8565-857885413d57" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220605Z:95fdb2c2-09c8-4b7f-8565-857885413d57" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:06:05 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:18:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "492" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?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/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/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45" ], - "x-ms-client-request-id": [ "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742", "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -264,39 +2515,80 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2f328ae0-549e-4111-95ae-c73413a6eaab" ], - "x-ms-request-id": [ "4f3482cf-72f8-4128-a5ca-7106ba562728" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220635Z:2f328ae0-549e-4111-95ae-c73413a6eaab" ], + "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": [ "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": [ "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:06:35 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:20:23 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/0f36a0eb-beb3-471a-83d5-ac71dcada2b6\",\"name\":\"0f36a0eb-beb3-471a-83d5-ac71dcada2b6\",\"status\":\"Running\",\"startTime\":\"2020-04-07T22:06:05.6099842Z\",\"endTime\":\"2020-04-07T22:06:06.3600001Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"81bbff09-ad93-4f2d-a06c-decb4b6f182f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?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/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/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46" ], - "x-ms-client-request-id": [ "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742", "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742", "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -305,39 +2597,121 @@ "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": [ "98b3d83b-3000-4e06-a907-6dbce134a7cf" ], - "x-ms-correlation-request-id": [ "4ec19c79-a73c-48fa-aaa9-02a9546c66d4" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220706Z:4ec19c79-a73c-48fa-aaa9-02a9546c66d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "5110be49-ecef-40c8-b241-e474934aa011" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:07:05 GMT" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:21:29 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/0f36a0eb-beb3-471a-83d5-ac71dcada2b6\",\"name\":\"0f36a0eb-beb3-471a-83d5-ac71dcada2b6\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T22:06:05.6099842Z\",\"endTime\":\"2020-04-07T22:06:39.3700492Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"81bbff09-ad93-4f2d-a06c-decb4b6f182f\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?api-version=2020-02-15\u0026operationResultResponseType=Location+5": { + "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/0f36a0eb-beb3-471a-83d5-ac71dcada2b6?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "44", "45", "46", "47" ], - "x-ms-client-request-id": [ "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742", "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742", "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742", "4c4b7bd4-f999-4ee7-98ac-93eb0bdd2742" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -346,22 +2720,104 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9fb26ef6-f913-4494-9269-e6523a63e230" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-correlation-request-id": [ "04a19b78-022f-4d0b-ab8b-0380e396498e" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T220706Z:04a19b78-022f-4d0b-ab8b-0380e396498e" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516", "517" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 22:07:06 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:23:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "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/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/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/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516", "517", "518" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:23:04 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } } diff --git a/src/Kusto/test/Start-AzKustoCluster.Tests.ps1 b/src/Kusto/test/Start-AzKustoCluster.Tests.ps1 index 56886dd756b6..e809964b618d 100644 --- a/src/Kusto/test/Start-AzKustoCluster.Tests.ps1 +++ b/src/Kusto/test/Start-AzKustoCluster.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Start-AzKustoCluster.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -14,17 +14,19 @@ while(-not $mockingPath) { Describe 'Start-AzKustoCluster' { It 'Start' { $resourceGroupName = $env.resourceGroupName - $clusterName = $env.clusterName + $clusterName = $env.PlainClusterName + Stop-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName { Start-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName } | Should -Not -Throw } It 'StartViaIdentity' { $resourceGroupName = $env.resourceGroupName - $clusterName = $env.clusterName + $clusterName = $env.PlainClusterName $clusterGetItem = Get-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName + Stop-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName { Start-AzKustoCluster -InputObject $clusterGetItem } | Should -Not -Throw } } diff --git a/src/Kusto/test/Stop-AzKustoCluster.Recording.json b/src/Kusto/test/Stop-AzKustoCluster.Recording.json index 91ed44091054..4501e8ae936c 100644 --- a/src/Kusto/test/Stop-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Stop-AzKustoCluster.Recording.json @@ -1,16 +1,16 @@ { - "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereua/stop?api-version=2020-02-15+1": { + "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereua/stop?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "133" ], - "x-ms-client-request-id": [ "df64a35f-8880-4590-b40f-1bc14565b9cb" ], + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,39 +19,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d99209f2-6d7f-4f5f-a458-d799871dadb3" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b30cb5e7-397b-457e-bf9f-256768eff50d?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "d4bc16bf-8daa-4db1-88a2-24b2d484787b" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T231441Z:d4bc16bf-8daa-4db1-88a2-24b2d484787b" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 23:14:40 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b30cb5e7-397b-457e-bf9f-256768eff50d?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:23:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b30cb5e7-397b-457e-bf9f-256768eff50d?api-version=2020-02-15+2": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b30cb5e7-397b-457e-bf9f-256768eff50d?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "133", "134" ], - "x-ms-client-request-id": [ "df64a35f-8880-4590-b40f-1bc14565b9cb", "df64a35f-8880-4590-b40f-1bc14565b9cb" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,39 +60,121 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "4ac28d9d-514c-4e97-8b9d-b247d8e4a9a4" ], - "x-ms-request-id": [ "fb86089b-b143-469d-aba0-bc8582672cf7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T231511Z:4ac28d9d-514c-4e97-8b9d-b247d8e4a9a4" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T012344Z:04ab48ef-eecc-4b59-91f3-a02770e74256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 23:15:10 GMT" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:23:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b30cb5e7-397b-457e-bf9f-256768eff50d\",\"name\":\"b30cb5e7-397b-457e-bf9f-256768eff50d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T23:14:40.9702769Z\",\"endTime\":\"2020-04-07T23:14:40.9859448Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"79740a92-849b-4aa1-b7f7-9e7e4a05bc2d\",\"provisioningState\":\"Succeeded\"}}" + "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/b30cb5e7-397b-457e-bf9f-256768eff50d?api-version=2020-02-15\u0026operationResultResponseType=Location+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/b30cb5e7-397b-457e-bf9f-256768eff50d?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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "133", "134", "135" ], - "x-ms-client-request-id": [ "df64a35f-8880-4590-b40f-1bc14565b9cb", "df64a35f-8880-4590-b40f-1bc14565b9cb", "df64a35f-8880-4590-b40f-1bc14565b9cb" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": [ "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": [ "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,37 +183,80 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ac64dd4b-67fd-4ff5-abda-4bd4fe8cd0f5" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-correlation-request-id": [ "62b33cee-e4aa-4d84-a931-adde28411d91" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T231512Z:62b33cee-e4aa-4d84-a931-adde28411d91" ], + "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": [ "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], - "Date": [ "Tue, 07 Apr 2020 23:15:11 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:25:47 GMT" ] }, "ContentHeaders": { - "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/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]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereua?api-version=2020-02-15+1": { + "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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereua?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "136" ], - "x-ms-client-request-id": [ "09f384a4-47e2-4c4b-b439-fbcc918405e4" ], - "CommandName": [ "Get-AzKustoCluster" ], - "FullCommandName": [ "Get-AzKustoCluster_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -140,40 +265,283 @@ "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": [ "e6feea0f-aad0-497a-b6aa-bdbf9d16c5bf" ], - "x-ms-correlation-request-id": [ "0689bc47-e626-4401-b915-afbbc48cb5ed" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T231512Z:0689bc47-e626-4401-b915-afbbc48cb5ed" ], + "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": [ "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], - "Date": [ "Tue, 07 Apr 2020 23:15:11 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "b9665cb9-4078-48df-bc1a-002121ae6933" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:28:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "786" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereua\",\"name\":\"sdkpsclustereua\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Stopped\",\"stateReason\":\"Suspended at 4/7/2020 11:03:37 PM\",\"uri\":\"https://sdkpsclustereua.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereua.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/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/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/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:28:57 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereua/stop?api-version=2020-02-15+2": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereua/stop?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "137" ], - "x-ms-client-request-id": [ "f6f95690-bd1f-412b-85e8-417adaae171b" ], - "CommandName": [ "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -182,39 +550,39 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b2cc6b4e-aee6-4df4-8259-d1b9a5c87130" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3a90805-0dd0-4c82-b054-d66d3e664929?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-correlation-request-id": [ "4d6b889c-1a2c-4701-af9f-aa744a223414" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T231512Z:4d6b889c-1a2c-4701-af9f-aa744a223414" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 23:15:12 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3a90805-0dd0-4c82-b054-d66d3e664929?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:28:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3a90805-0dd0-4c82-b054-d66d3e664929?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/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/d3a90805-0dd0-4c82-b054-d66d3e664929?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "137", "138" ], - "x-ms-client-request-id": [ "f6f95690-bd1f-412b-85e8-417adaae171b", "f6f95690-bd1f-412b-85e8-417adaae171b" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "x-ms-unique-id": [ "532", "533" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -223,39 +591,39 @@ "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": [ "481e862a-9989-4014-84e4-f3212a075f06" ], - "x-ms-correlation-request-id": [ "12913d3a-7167-4b81-9928-6489e1c659a7" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T231543Z:12913d3a-7167-4b81-9928-6489e1c659a7" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 23:15:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:29:28 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/d3a90805-0dd0-4c82-b054-d66d3e664929\",\"name\":\"d3a90805-0dd0-4c82-b054-d66d3e664929\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T23:15:12.7309384Z\",\"endTime\":\"2020-04-07T23:15:12.746573Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0bdc9c6-4208-42de-a7c4-0a76eaec1ef0\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3a90805-0dd0-4c82-b054-d66d3e664929?api-version=2020-02-15\u0026operationResultResponseType=Location+4": { + "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/d3a90805-0dd0-4c82-b054-d66d3e664929?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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "137", "138", "139" ], - "x-ms-client-request-id": [ "f6f95690-bd1f-412b-85e8-417adaae171b", "f6f95690-bd1f-412b-85e8-417adaae171b", "f6f95690-bd1f-412b-85e8-417adaae171b" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "x-ms-unique-id": [ "532", "533", "534" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -264,22 +632,2069 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "28be1424-593e-471d-85bd-3cd9843ff40f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-correlation-request-id": [ "fac22afd-3340-4869-a838-c99871d5c9ec" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T231543Z:fac22afd-3340-4869-a838-c99871d5c9ec" ], + "Vary": [ "Accept-Encoding" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T013001Z:c1f8064c-0b5f-4e3f-a718-cf06da9f7cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 23:15:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:30:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "492" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, + "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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "33035f7e-970a-48c5-a56e-13a5289361b1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "ab07ecdd-4812-48ee-834e-4ccc7aba1fcf" ], + "x-ms-request-id": [ "27c9ff9f-4f28-484f-9bd5-deb1dd681d79" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "66501f01-e684-4fa4-a291-4582eef13845" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:37:35 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "050608c9-5267-4f96-a2a6-b01fc927e09a" ], + "CommandName": [ "Get-AzKustoCluster" ], + "FullCommandName": [ "Get-AzKustoCluster_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 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/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": [ "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": [ "Mon, 03 Aug 2020 01:37:36 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T014209Z:faf7fde2-a934-4772-9e9e-2926a5757ebb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562", "563" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "834caae1-9fb9-45f2-90a0-a9bc30b4ffd1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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": [ "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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562", "563", "564" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:43:39 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/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/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/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562", "563", "564", "565" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:43:40 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], + "CommandName": [ "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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": [ "Mon, 03 Aug 2020 01:43:40 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "7eb169e7-ceaf-4817-a744-37782229337e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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-routing-request-id": [ "NORTHEUROPE:20200803T014813Z:fa9c9e05-ff00-4fe7-b727-12377b46a251" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:52:15 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/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/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/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:52:16 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } } diff --git a/src/Kusto/test/Stop-AzKustoCluster.Tests.ps1 b/src/Kusto/test/Stop-AzKustoCluster.Tests.ps1 index 12eef46ffa90..84c97057eb49 100644 --- a/src/Kusto/test/Stop-AzKustoCluster.Tests.ps1 +++ b/src/Kusto/test/Stop-AzKustoCluster.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Stop-AzKustoCluster.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -14,17 +14,19 @@ while(-not $mockingPath) { Describe 'Stop-AzKustoCluster' { It 'Stop' { $resourceGroupName = $env.resourceGroupName - $clusterName = $env.clusterName + "a" + $clusterName = $env.PlainClusterName { Stop-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName } | Should -Not -Throw + Start-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName } It 'StopViaIdentity' { $resourceGroupName = $env.resourceGroupName - $clusterName = $env.clusterName + "a" + $clusterName = $env.PlainClusterName $clusterGetItem = Get-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName { Stop-AzKustoCluster -InputObject $clusterGetItem } | Should -Not -Throw + Start-AzKustoCluster -InputObject $clusterGetItem } } diff --git a/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json index 1c37c5585b56..a3cf68075962 100644 --- a/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json @@ -1,45 +1,38 @@ { - "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\": \"sdkpsclustereu\",\r\n \"type\": \"Microsoft.Kusto/Clusters\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testclusterlbfexs\",\r\n \"type\": \"Microsoft.Kusto/Clusters\"\r\n}", "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "c158a448-85a6-4108-afa0-b016ada54806" ], - "CommandName": [ "Test-AzKustoClusterNameAvailability" ], - "FullCommandName": [ "Test-AzKustoClusterNameAvailability_CheckExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "71" ] + "Content-Length": [ "74" ] } }, "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8a8435fe-a9d8-4599-a526-5765e73effaa" ], - "x-ms-request-id": [ "b177ad6d-4802-4139-9d4b-c9aa90ec3a62" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-routing-request-id": [ "FRANCESOUTH:20200407T215154Z:8a8435fe-a9d8-4599-a526-5765e73effaa" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 21:51:54 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:52:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "148" ], + "Content-Length": [ "154" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"sdkpsclustereu\",\"nameAvailable\":false,\"message\":\"Name \u0027sdkpsclustereu\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-AzKustoClusterNameAvailability.Tests.ps1 b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Tests.ps1 index abb9073c9cb7..07d7995a4103 100644 --- a/src/Kusto/test/Test-AzKustoClusterNameAvailability.Tests.ps1 +++ b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Test-AzKustoClusterNameAvailability.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } diff --git a/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json index 2efd0e62bdda..d6d02d5ad59e 100644 --- a/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json @@ -1,58 +1,52 @@ { - "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/principalAssignments\"\r\n}", + "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": { - "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "d80b3220-e92d-4225-b201-c6e0e8aaf73a" ], - "CommandName": [ "Test-AzKustoClusterPrincipalAssignmentNameAvailability" ], - "FullCommandName": [ "Test-AzKustoClusterPrincipalAssignmentNameAvailability_CheckExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "98" ] + "Content-Length": [ "102" ] } }, "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5fcb28b9-efc9-43d9-a36f-8d034d1fdfe9" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "a4053c2f-c980-4fde-bc7c-e58c34068ed2" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T143954Z:a4053c2f-c980-4fde-bc7c-e58c34068ed2" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:39:53 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:52:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "67" ], + "Content-Length": [ "221" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"principalassignment1\",\"nameAvailable\":true,\"message\":\"\"}" + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "3c162507-c2b7-4a70-beb8-9fa042daa34f" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "e494a9b2-9d0a-454f-bd41-dfde05c0f15e" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -61,41 +55,34 @@ "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": [ "7535675e-3413-4836-8532-aa1edc0d0484" ], - "x-ms-correlation-request-id": [ "0e05041b-0645-484e-9b17-a5dca079deb3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T143955Z:0e05041b-0645-484e-9b17-a5dca079deb3" ], + "x-ms-request-id": [ "83aa5770-d569-4f5e-9b05-7a4403400529" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:39:54 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=04bed633f23e09623dac6b627accce6240efa1e9739ec9328a5f0adccfa09faa;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:52:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/principalAssignments\"\r\n}", + "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": { - "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "afe51899-ac02-482c-bdae-5c99de81cb61" ], - "CommandName": [ "Test-AzKustoClusterPrincipalAssignmentNameAvailability" ], - "FullCommandName": [ "Test-AzKustoClusterPrincipalAssignmentNameAvailability_CheckViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -105,20 +92,21 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "190a7a4a-8885-40ac-abf0-9c3c16800d35" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "c9c4ff54-676b-4101-9d4d-7a7152d348bc" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T143956Z:c9c4ff54-676b-4101-9d4d-7a7152d348bc" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:39:55 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:52:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "67" ], + "Content-Length": [ "65" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, diff --git a/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Tests.ps1 b/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Tests.ps1 index e7bafd6bf861..ea3d5c65386c 100644 --- a/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Tests.ps1 +++ b/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -19,14 +19,14 @@ Describe 'Test-AzKustoClusterPrincipalAssignmentNameAvailability' { $principalAssignmentResourceType = $env.clusterPrincipalAssignmentResourceType $availability = Test-AzKustoClusterPrincipalAssignmentNameAvailability -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $principalAssignmentName -Type $principalAssignmentResourceType - $availability.NameAvailable | Should Be $true + $availability.NameAvailable | Should Be $false $availability.Name | Should Be $principalAssignmentName } It 'CheckViaIdentityExpanded' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - $principalAssignmentName = $env.principalAssignmentName + $principalAssignmentName = $env.principalAssignmentName1 $principalAssignmentResourceType = $env.clusterPrincipalAssignmentResourceType $cluster = Get-AzKustoCluster -ResourceGroupName $resourceGroupName -ClusterName $clusterName diff --git a/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json index 7435e4fb7f30..edea4f2aed4a 100644 --- a/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json @@ -1,59 +1,52 @@ { - "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkNameAvailability?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"sdkpsdataconnection\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Database/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": { - "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "28ac18ee-7315-44b2-ae3b-8fc5b30233d2" ], - "CommandName": [ "Test-AzKustoDataConnectionNameAvailability" ], - "FullCommandName": [ "Test-AzKustoDataConnectionNameAvailability_CheckExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "101" ] + "Content-Length": [ "107" ] } }, "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "7fbdae1b-e896-4ee4-b621-df6a9d3987a4" ], - "x-ms-correlation-request-id": [ "3d959091-f579-44bf-8fb8-74f6d6cff9cb" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T143658Z:3d959091-f579-44bf-8fb8-74f6d6cff9cb" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:36:57 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:53:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "243" ], + "Content-Length": [ "259" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"sdkpsdataconnection\",\"nameAvailable\":false,\"message\":\"Data Connection sdkpsdataconnection already exists in database sdkpowershelldb in cluster sdkpsclustereu. Please select a different data connection name.\",\"reason\":\"AlreadyExists\"}" + "Content": "{\"name\":\"testdataconnectionlbfexs\",\"nameAvailable\":false,\"message\":\"Data Connection testdataconnectionlbfexs already exists in database testdatabaselbfexs in cluster testclusterlbfexs. Please select a different data connection name.\",\"reason\":\"AlreadyExists\"}" } }, - "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "3a2e78ac-ce80-4f74-a984-c2ff49c9e7b7" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "6bd98bf9-61b5-4ff8-8c0c-45ab662e4c9d" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,69 +55,62 @@ "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": [ "39f2b6ef-eddd-4875-a83e-a87cec55e2b2" ], - "x-ms-correlation-request-id": [ "dafb8c90-fff4-41f7-b536-1f662c36a0d1" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T143701Z:dafb8c90-fff4-41f7-b536-1f662c36a0d1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:37:00 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:53:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"sdkpsdataconnectiona\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Database/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": { - "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "e214b0de-7b03-4fef-b19d-2baff2e51a40" ], - "CommandName": [ "Test-AzKustoDataConnectionNameAvailability" ], - "FullCommandName": [ "Test-AzKustoDataConnectionNameAvailability_CheckViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "102" ] + "Content-Length": [ "113" ] } }, "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "df5c7c53-1288-4c71-acc0-b0ee0a9424c9" ], - "x-ms-correlation-request-id": [ "9f461bab-414b-421a-bf11-65aeaf553dab" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T143702Z:9f461bab-414b-421a-bf11-65aeaf553dab" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:37:01 GMT" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:53:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "65" ], + "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"sdkpsdataconnectiona\",\"nameAvailable\":true,\"message\":\"\"}" + "Content": "{\"name\":\"testdataconnectionlbfexssu8yho\",\"nameAvailable\":true,\"message\":\"\"}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Tests.ps1 b/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Tests.ps1 index f32edd37b144..11faf7a85996 100644 --- a/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Tests.ps1 +++ b/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Test-AzKustoDataConnectionNameAvailability.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -27,7 +27,7 @@ Describe 'Test-AzKustoDataConnectionNameAvailability' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $dataConnectionName = $env.dataConnectionName + "a" + $dataConnectionName = $env.dataConnectionName + $env.rstr4 $dataConnectionResourceType = $env.dataConnectionResourceType $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName diff --git a/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json index f485721ea27b..acca3518fefd 100644 --- a/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json @@ -1,59 +1,52 @@ { - "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkNameAvailability?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"sdkpowershelldb\",\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": { - "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "9f8974ce-e4cc-4469-89d2-a2cd4ad1c7f5" ], - "CommandName": [ "Test-AzKustoDatabaseNameAvailability" ], - "FullCommandName": [ "Test-AzKustoDatabaseNameAvailability_CheckExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "82" ] + "Content-Length": [ "85" ] } }, "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "7e809801-61b1-44fb-8b79-6642fb8a8fc9" ], - "x-ms-correlation-request-id": [ "53e2c667-3c5f-4941-b735-a18f35770009" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T144919Z:53e2c667-3c5f-4941-b735-a18f35770009" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:49:18 GMT" ], - "Set-Cookie": [ "ARRAffinity=4c87a3fd2d13fe8deabf01a0da1890a3564e836c7c9f153e312617237a9297d0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:52:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "168" ], + "Content-Length": [ "177" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"sdkpowershelldb\",\"nameAvailable\":false,\"message\":\"Database sdkpowershelldb already exists in cluster sdkpsclustereu. 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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "c4957a28-2299-4b88-8578-01a769ca521f" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "0a4f0636-0882-46bf-9427-7b14c8dea020" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,69 +55,62 @@ "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": [ "67e436aa-a9da-4830-ab64-050cc4f1d4bd" ], - "x-ms-correlation-request-id": [ "efcb69c8-c24b-4b85-9845-785abab8fc33" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T144919Z:efcb69c8-c24b-4b85-9845-785abab8fc33" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:49:19 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:52:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"sdkpowershelldbb\",\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": { - "x-ms-unique-id": [ "27" ], - "x-ms-client-request-id": [ "bad3bf5e-9aa9-40df-bb4e-c3bb6eaba17d" ], - "CommandName": [ "Test-AzKustoDatabaseNameAvailability" ], - "FullCommandName": [ "Test-AzKustoDatabaseNameAvailability_CheckViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "83" ] + "Content-Length": [ "91" ] } }, "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": [ "8288ac9c-89f9-49dc-8aa8-7f2703eadd9b" ], - "x-ms-correlation-request-id": [ "560a7be8-5c09-4d85-93ca-486a65d0bcbb" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T144920Z:560a7be8-5c09-4d85-93ca-486a65d0bcbb" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:49:20 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:52:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "61" ], + "Content-Length": [ "69" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"sdkpowershelldbb\",\"nameAvailable\":true,\"message\":\"\"}" + "Content": "{\"name\":\"testdatabaselbfexswmcyao\",\"nameAvailable\":true,\"message\":\"\"}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Tests.ps1 b/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Tests.ps1 index 98b01673c932..1b8c11bb328c 100644 --- a/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Tests.ps1 +++ b/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Test-AzKustoDatabaseNameAvailability.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -26,7 +26,7 @@ Describe 'Test-AzKustoDatabaseNameAvailability' { It 'CheckViaIdentityExpanded' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName - $databaseName = $env.databaseName + "b" + $databaseName = $env.databaseName + $env.rstr6 $databaseResourceType = $env.databaseType $cluster = Get-AzKustoCluster -ResourceGroupName $resourceGroupName -ClusterName $clusterName diff --git a/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json index 55425be541c6..d5ff15aa4004 100644 --- a/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json @@ -1,58 +1,293 @@ { - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/principalAssignments\"\r\n}", + "Method": "PUT", + "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": { - "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "089cd0ed-dffe-4891-85f0-b66d1395b234" ], - "CommandName": [ "Test-AzKustoDatabasePrincipalAssignmentNameAvailability" ], - "FullCommandName": [ "Test-AzKustoDatabasePrincipalAssignmentNameAvailability_CheckExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "139" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], + "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": [ "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": [ "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/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/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/e1d21d05-b618-4c06-a324-10434c520525?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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": [ "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": [ "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": [ "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/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/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/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": { + }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "98" ] + "Content-Length": [ "108" ] } }, "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "84d4d847-bd05-4703-8f54-4d768762108c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "09fcce9b-75e0-401a-aa8b-64fe74f3d670" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T144314Z:09fcce9b-75e0-401a-aa8b-64fe74f3d670" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "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 testdatabaselbfexs. Please select a different principal assignment name.\"}" + } + }, + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "2e500792-fba4-4eac-be62-dc6734a81d63" ], + "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment" ], + "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/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": [ "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": [ "Mon, 03 Aug 2020 01:52:51 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:43:13 GMT" ], - "Set-Cookie": [ "ARRAffinity=4c87a3fd2d13fe8deabf01a0da1890a3564e836c7c9f153e312617237a9297d0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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": [ "Mon, 03 Aug 2020 01:53:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "67" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"principalassignment1\",\"nameAvailable\":true,\"message\":\"\"}" + "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]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "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/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "20e71199-b2f7-4871-90fc-24468eb02501" ], + "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" ], + "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": [ "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": [ "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": [ "Mon, 03 Aug 2020 01:53:22 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "5c779f6a-d361-4a68-8982-d8588c557510" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -61,64 +296,58 @@ "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": [ "3af9d758-504a-4fe7-be4b-518de91065b7" ], - "x-ms-correlation-request-id": [ "a8166a10-cf32-4327-bea2-345b196ae5ff" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T144314Z:a8166a10-cf32-4327-bea2-345b196ae5ff" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:43:14 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:53:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/principalAssignments\"\r\n}", + "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": { - "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "20304b2d-e066-4247-947d-a86a67e032ca" ], - "CommandName": [ "Test-AzKustoDatabasePrincipalAssignmentNameAvailability" ], - "FullCommandName": [ "Test-AzKustoDatabasePrincipalAssignmentNameAvailability_CheckViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "98" ] + "Content-Length": [ "108" ] } }, "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0a683080-245e-4e10-8c2a-23de2c4dfe1c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "e7ee492f-c6db-472f-ac63-65685b346bab" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T144315Z:e7ee492f-c6db-472f-ac63-65685b346bab" ], + "Vary": [ "Accept-Encoding" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 14:43:15 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:53:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "67" ], + "Content-Length": [ "65" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, diff --git a/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Tests.ps1 b/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Tests.ps1 index 182ed5a2924c..7f6ccf293045 100644 --- a/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Tests.ps1 +++ b/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -16,19 +16,24 @@ Describe 'Test-AzKustoDatabasePrincipalAssignmentNameAvailability' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $principalAssignmentName = $env.principalAssignmentName + $principalAssignmentName = $env.principalAssignmentName1 + $principalId = $env.principalId1 $principalAssignmentResourceType = $env.databasePrincipalAssignmentResourceType + $role = $env.databasePrincipalRole + $principalType = $env.principalType + New-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $principalAssignmentName -DatabaseName $databaseName -PrincipalId $principalId -PrincipalType $principalType -Role $role $availability = Test-AzKustoDatabasePrincipalAssignmentNameAvailability -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Name $principalAssignmentName -Type $principalAssignmentResourceType - $availability.NameAvailable | Should Be $true + $availability.NameAvailable | Should Be $false $availability.Name | Should Be $principalAssignmentName + { Remove-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -PrincipalAssignmentName $principalAssignmentName } | Should -Not -Throw } It 'CheckViaIdentityExpanded' { $resourceGroupName = $env.resourceGroupName $clusterName = $env.clusterName $databaseName = $env.databaseName - $principalAssignmentName = $env.principalAssignmentName + $principalAssignmentName = $env.principalAssignmentName1 $principalAssignmentResourceType = $env.databasePrincipalAssignmentResourceType $cluster = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName diff --git a/src/Kusto/test/Update-AzKustoCluster.Recording.json b/src/Kusto/test/Update-AzKustoCluster.Recording.json index 56064ea3d61b..873500a71e65 100644 --- a/src/Kusto/test/Update-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Update-AzKustoCluster.Recording.json @@ -1,17 +1,10 @@ { - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "Headers": { - "x-ms-unique-id": [ "109" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f" ], - "CommandName": [ "Update-AzKustoCluster" ], - "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -21,41 +14,41 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e933e5f8-5826-4230-b900-04fd34a0f8f9" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "73b4ad5d-7a4e-438e-b29d-364f2b868769" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170338Z:73b4ad5d-7a4e-438e-b29d-364f2b868769" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:03:37 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:53:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "750" ], + "Content-Length": [ "793" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+2": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -64,39 +57,39 @@ "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": [ "26cf212e-d490-4376-bb3d-658d691bf650" ], - "x-ms-correlation-request-id": [ "e6168bd7-a557-4a72-a555-bedae9d2a293" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170408Z:e6168bd7-a557-4a72-a555-bedae9d2a293" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:04:07 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:53:56 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+3": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,39 +98,39 @@ "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": [ "659a98eb-3c6a-46fe-a7d1-a3833f0ff532" ], - "x-ms-correlation-request-id": [ "de753d7d-d0fa-423b-9a3a-0b091e84f2c5" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170438Z:de753d7d-d0fa-423b-9a3a-0b091e84f2c5" ], + "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-routing-request-id": [ "NORTHEUROPE:20200803T015427Z:d99859f1-8ff8-4cee-b967-d26f042e4552" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:04:38 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:54:26 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+4": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "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": { @@ -146,39 +139,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "38314b2e-4c02-4c8e-b9bc-9cdb97e0dc4b" ], - "x-ms-request-id": [ "ce8d0366-0f92-4281-a9c0-d8d2ebcd8de6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170508Z:38314b2e-4c02-4c8e-b9bc-9cdb97e0dc4b" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:05:08 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:54:57 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+5": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -187,39 +180,39 @@ "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": [ "b9d1cdc9-f062-4673-8959-ce5d517f588f" ], - "x-ms-correlation-request-id": [ "18e397c5-5181-4b94-8609-2d83072cd39c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170539Z:18e397c5-5181-4b94-8609-2d83072cd39c" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:05:39 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:55:27 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+6": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -228,39 +221,39 @@ "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": [ "7621835a-a660-4afb-98d4-197dcf9d4a72" ], - "x-ms-correlation-request-id": [ "d7d6dd3e-96fb-407d-8047-673802c5bedb" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170609Z:d7d6dd3e-96fb-407d-8047-673802c5bedb" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:06:09 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:55:57 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+7": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -269,39 +262,39 @@ "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": [ "2bf739a8-8005-4db9-a4de-8a607c2025a2" ], - "x-ms-correlation-request-id": [ "d1b1b8c5-0874-4bc1-94d3-67056d6f18ec" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170640Z:d1b1b8c5-0874-4bc1-94d3-67056d6f18ec" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:06:39 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:56:27 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+8": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -310,39 +303,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2fd5f3f0-3f6a-46a6-9799-eabb3050b44f" ], - "x-ms-request-id": [ "95a6f9f8-12fa-424c-94b3-b00469c4275f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170710Z:2fd5f3f0-3f6a-46a6-9799-eabb3050b44f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:07:10 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:56:58 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+9": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -351,39 +344,39 @@ "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": [ "9b1b3f99-c1c7-4240-a7ca-b366bee97977" ], - "x-ms-correlation-request-id": [ "a0e97560-66e4-4955-8d8e-fd841fb7946e" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170741Z:a0e97560-66e4-4955-8d8e-fd841fb7946e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "6548616f-4018-4c44-9fd1-c97ac816ccf0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:07:40 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:57:28 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+10": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -392,39 +385,39 @@ "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": [ "09787955-d151-49df-89a3-32cc1a12396c" ], - "x-ms-correlation-request-id": [ "7940bac6-683e-4002-b7d6-93fcf5cc2be7" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170811Z:7940bac6-683e-4002-b7d6-93fcf5cc2be7" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:08:10 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:57:58 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+11": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -433,39 +426,39 @@ "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": [ "7f211293-1fe2-477e-bf4b-b95f256bf101" ], - "x-ms-correlation-request-id": [ "c2077663-23ca-4162-9377-2bec6060db3c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170841Z:c2077663-23ca-4162-9377-2bec6060db3c" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:08:40 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:58:28 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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+12": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -474,39 +467,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6c7cd982-b133-416f-8078-0eeee7e8061f" ], - "x-ms-request-id": [ "30e38ee8-0dd1-4210-be07-746dca6e5f07" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170912Z:6c7cd982-b133-416f-8078-0eeee7e8061f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:09:12 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:58:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"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/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+13": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -515,122 +508,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "2fec09c0-7b45-4803-a1b2-2f91ad6f935b" ], - "x-ms-correlation-request-id": [ "f36b36c7-5963-4398-ac4e-b007ec6eb9d4" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170942Z:f36b36c7-5963-4398-ac4e-b007ec6eb9d4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:09:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "ContentHeaders": { - "Content-Length": [ "473" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" - } - }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], - "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": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "bd30a571-fd94-4a93-bf9d-02fed30341e7" ], - "x-ms-correlation-request-id": [ "8618a81e-e731-4b3e-86e4-9453c6703aef" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171013Z:8618a81e-e731-4b3e-86e4-9453c6703aef" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:10:12 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "ContentHeaders": { - "Content-Length": [ "477" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Succeeded\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:09:42.9488791Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+15": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], - "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", "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", "Update-AzKustoCluster_UpdateExpanded" ], - "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": { "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "beee415e-eea7-473b-ab98-7a2bceaac925" ], - "x-ms-correlation-request-id": [ "fd087cbc-03d8-416b-8534-d56df51db798" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171013Z:fd087cbc-03d8-416b-8534-d56df51db798" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:10:12 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:58:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+1": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107" ], - "x-ms-client-request-id": [ "5151a451-65c3-4292-9968-ab590b9aa906"], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "4dcc853a-51bb-44cb-8041-6ac044def180" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], - "ParameterSetName": [ "__AllParameterSets"], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview"], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -639,41 +550,34 @@ "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": [ "101b91f1-2e83-4b8b-9626-547acad98409" ], - "x-ms-correlation-request-id": [ "a3bd7c2d-f5f9-4a16-8dc3-1eceeb3fa042" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170336Z:a3bd7c2d-f5f9-4a16-8dc3-1eceeb3fa042" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:03:35 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:58:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+2": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", - "Content": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "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": { - "x-ms-unique-id": [ "109" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f" ], - "CommandName": [ "Update-AzKustoCluster" ], - "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -683,41 +587,41 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e933e5f8-5826-4230-b900-04fd34a0f8f9" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15" ], + "ETag": [ "\"\"" ], + "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": [ "73b4ad5d-7a4e-438e-b29d-364f2b868769" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170338Z:73b4ad5d-7a4e-438e-b29d-364f2b868769" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:03:37 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:59:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "750" ], + "Content-Length": [ "793" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+3": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], + "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -726,39 +630,39 @@ "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": [ "26cf212e-d490-4376-bb3d-658d691bf650" ], - "x-ms-correlation-request-id": [ "e6168bd7-a557-4a72-a555-bedae9d2a293" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170408Z:e6168bd7-a557-4a72-a555-bedae9d2a293" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:04:07 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 01:59:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+4": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], + "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -767,39 +671,39 @@ "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": [ "659a98eb-3c6a-46fe-a7d1-a3833f0ff532" ], - "x-ms-correlation-request-id": [ "de753d7d-d0fa-423b-9a3a-0b091e84f2c5" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170438Z:de753d7d-d0fa-423b-9a3a-0b091e84f2c5" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:04:38 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:00:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+5": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], + "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "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" ], + "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": { @@ -808,39 +712,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "38314b2e-4c02-4c8e-b9bc-9cdb97e0dc4b" ], - "x-ms-request-id": [ "ce8d0366-0f92-4281-a9c0-d8d2ebcd8de6" ], + "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" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170508Z:38314b2e-4c02-4c8e-b9bc-9cdb97e0dc4b" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020032Z:561be9c0-ac63-4b05-9812-a7b8d41bd98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:05:08 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:00:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+6": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], + "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -849,39 +753,39 @@ "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": [ "b9d1cdc9-f062-4673-8959-ce5d517f588f" ], - "x-ms-correlation-request-id": [ "18e397c5-5181-4b94-8609-2d83072cd39c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170539Z:18e397c5-5181-4b94-8609-2d83072cd39c" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:05:39 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:01:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+7": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -890,39 +794,39 @@ "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": [ "7621835a-a660-4afb-98d4-197dcf9d4a72" ], - "x-ms-correlation-request-id": [ "d7d6dd3e-96fb-407d-8047-673802c5bedb" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170609Z:d7d6dd3e-96fb-407d-8047-673802c5bedb" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:06:09 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:01:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+8": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -931,39 +835,39 @@ "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": [ "2bf739a8-8005-4db9-a4de-8a607c2025a2" ], - "x-ms-correlation-request-id": [ "d1b1b8c5-0874-4bc1-94d3-67056d6f18ec" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170640Z:d1b1b8c5-0874-4bc1-94d3-67056d6f18ec" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:06:39 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:02:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+9": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -972,39 +876,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2fd5f3f0-3f6a-46a6-9799-eabb3050b44f" ], - "x-ms-request-id": [ "95a6f9f8-12fa-424c-94b3-b00469c4275f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170710Z:2fd5f3f0-3f6a-46a6-9799-eabb3050b44f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:07:10 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:02:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+10": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1013,39 +917,39 @@ "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": [ "9b1b3f99-c1c7-4240-a7ca-b366bee97977" ], - "x-ms-correlation-request-id": [ "a0e97560-66e4-4955-8d8e-fd841fb7946e" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170741Z:a0e97560-66e4-4955-8d8e-fd841fb7946e" ], + "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-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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:07:40 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:03:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+11": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1054,39 +958,39 @@ "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": [ "09787955-d151-49df-89a3-32cc1a12396c" ], - "x-ms-correlation-request-id": [ "7940bac6-683e-4002-b7d6-93fcf5cc2be7" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170811Z:7940bac6-683e-4002-b7d6-93fcf5cc2be7" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:08:10 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:03:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+12": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1095,39 +999,39 @@ "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": [ "7f211293-1fe2-477e-bf4b-b95f256bf101" ], - "x-ms-correlation-request-id": [ "c2077663-23ca-4162-9377-2bec6060db3c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170841Z:c2077663-23ca-4162-9377-2bec6060db3c" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:08:40 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:04:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+13": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1136,80 +1040,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6c7cd982-b133-416f-8078-0eeee7e8061f" ], - "x-ms-request-id": [ "30e38ee8-0dd1-4210-be07-746dca6e5f07" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170912Z:6c7cd982-b133-416f-8078-0eeee7e8061f" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:09:12 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:04:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"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/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+14": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], + "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_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" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-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": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "2fec09c0-7b45-4803-a1b2-2f91ad6f935b" ], - "x-ms-correlation-request-id": [ "f36b36c7-5963-4398-ac4e-b007ec6eb9d4" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T170942Z:f36b36c7-5963-4398-ac4e-b007ec6eb9d4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:09:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "ContentHeaders": { - "Content-Length": [ "473" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Running\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:03:39.0943648Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Running\"}}" - } - }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15+15": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8cbf9349-7fbf-4569-97ed-7232a6ec084f?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], - "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1218,67 +1081,26 @@ "Response": { "StatusCode": 200, "Headers": { - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "bd30a571-fd94-4a93-bf9d-02fed30341e7" ], - "x-ms-correlation-request-id": [ "8618a81e-e731-4b3e-86e4-9453c6703aef" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171013Z:8618a81e-e731-4b3e-86e4-9453c6703aef" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:10:12 GMT" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] - }, - "ContentHeaders": { - "Content-Length": [ "477" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"name\":\"8cbf9349-7fbf-4569-97ed-7232a6ec084f\",\"status\":\"Succeeded\",\"startTime\":\"2020-03-29T17:03:37.938131Z\",\"endTime\":\"2020-03-29T17:09:42.9488791Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"acbf7fc4-e245-4ecb-b996-dd6990e484e8\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15+16": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123" ], - "x-ms-client-request-id": [ "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f", "48b93dd2-a243-4010-8714-bcac0dfe984f" ], - "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", "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", "Update-AzKustoCluster_UpdateExpanded" ], - "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": { "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "beee415e-eea7-473b-ab98-7a2bceaac925" ], - "x-ms-correlation-request-id": [ "fd087cbc-03d8-416b-8534-d56df51db798" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200329T171013Z:fd087cbc-03d8-416b-8534-d56df51db798" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 29 Mar 2020 17:10:12 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:04:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"name\":\"sdkpsclustereu\",\"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://sdkpsclustereu.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-sdkpsclustereu.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Update-AzKustoCluster.Tests.ps1 b/src/Kusto/test/Update-AzKustoCluster.Tests.ps1 index cb857cb3c40b..558f99da14c7 100644 --- a/src/Kusto/test/Update-AzKustoCluster.Tests.ps1 +++ b/src/Kusto/test/Update-AzKustoCluster.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzKustoCluster.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -20,9 +20,8 @@ Describe 'Update-AzKustoCluster' { } It 'UpdateViaIdentityExpanded' { - - $clusterGetItem = Get-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $env.clusterName - $updatedCluster = Update-AzKustoCluster -InputObject $clusterGetItem -SkuName $env.updatedSkuName -SkuTier $env.skuTier - Validate_Cluster $updatedCluster $env.clusterName $env.location "Running" "Succeeded" $env.resourceType $env.updatedSkuName $env.skuTier $env.capacity + $clusterGetItem = Get-AzKustoCluster -ResourceGroupName $env.resourceGroupName -Name $env.clusterName + $updatedCluster = Update-AzKustoCluster -InputObject $clusterGetItem -SkuName $env.skuName -SkuTier $env.skuTier + Validate_Cluster $updatedCluster $env.clusterName $env.location "Running" "Succeeded" $env.resourceType $env.skuName $env.skuTier $env.capacity } } diff --git a/src/Kusto/test/Update-AzKustoDataConnection.Recording.json b/src/Kusto/test/Update-AzKustoDataConnection.Recording.json index 52486c400dd2..2eec1d5e82f0 100644 --- a/src/Kusto/test/Update-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Update-AzKustoDataConnection.Recording.json @@ -1,61 +1,54 @@ { - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\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": { - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "3eb419b7-b9c2-4081-98af-ad9d394f75b9" ], - "CommandName": [ "Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "428" ] + "Content-Length": [ "333" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a5dedbfd-49e6-4c77-8d51-92b53de6162a" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b10e487b-8991-4ce6-bfe2-b9723d186cfb?api-version=2020-02-15" ], + "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": [ "d8b80254-5f10-484a-9c38-ba67a11dc61d" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T083908Z:d8b80254-5f10-484a-9c38-ba67a11dc61d" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:39:07 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b10e487b-8991-4ce6-bfe2-b9723d186cfb?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:06:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "742" ], + "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"mappingRuleName\":\"EventsMapping1\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b10e487b-8991-4ce6-bfe2-b9723d186cfb?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/96d77c67-a748-44f0-a097-0fc40820d6e3?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b10e487b-8991-4ce6-bfe2-b9723d186cfb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/96d77c67-a748-44f0-a097-0fc40820d6e3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15" ], - "x-ms-client-request-id": [ "3eb419b7-b9c2-4081-98af-ad9d394f75b9", "3eb419b7-b9c2-4081-98af-ad9d394f75b9" ], - "CommandName": [ "Update-AzKustoDataConnection", "Update-AzKustoDataConnection" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -64,39 +57,39 @@ "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": [ "e8e22c63-97b9-466d-8e0b-258080a1c640" ], - "x-ms-correlation-request-id": [ "66b8158b-195e-4387-a7be-e412b86f2dbd" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T083938Z:66b8158b-195e-4387-a7be-e412b86f2dbd" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:39:37 GMT" ], - "Set-Cookie": [ "ARRAffinity=ed41ca322a49669b612bcebf273fd24041177ae99ea92e4ec42dded8575d2518;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b10e487b-8991-4ce6-bfe2-b9723d186cfb\",\"name\":\"b10e487b-8991-4ce6-bfe2-b9723d186cfb\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-05T08:39:07.9112739Z\",\"endTime\":\"2020-04-05T08:39:11.0987295Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"bf8a0f07-6395-445d-beb7-1aa6ac5adf10\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/96d77c67-a748-44f0-a097-0fc40820d6e3\",\"name\":\"96d77c67-a748-44f0-a097-0fc40820d6e3\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:06:45.9943391Z\",\"endTime\":\"2020-08-03T02:06:48.5883448Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16" ], - "x-ms-client-request-id": [ "3eb419b7-b9c2-4081-98af-ad9d394f75b9", "3eb419b7-b9c2-4081-98af-ad9d394f75b9", "3eb419b7-b9c2-4081-98af-ad9d394f75b9" ], - "CommandName": [ "Update-AzKustoDataConnection", "Update-AzKustoDataConnection", "Update-AzKustoDataConnection" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,85 +98,78 @@ "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": [ "e9c35803-7035-42d7-b0ed-a27d4bae34c5" ], - "x-ms-correlation-request-id": [ "51338030-ecf1-4e35-a8bf-3cd51ae79c2a" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200405T083938Z:51338030-ecf1-4e35-a8bf-3cd51ae79c2a" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Sun, 05 Apr 2020 08:39:38 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "770" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\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": { - "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "a1b6f30d-3cc7-4279-ac93-d2063df1e0a9" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "579" ] + "Content-Length": [ "488" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d2d7577d-7697-4465-8a23-228954527a46" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b3bd756d-a473-4835-a68f-fe7413f261d0?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "6d02aa61-c8e9-4805-a1ce-0e97d2eb9d49" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T125606Z:6d02aa61-c8e9-4805-a1ce-0e97d2eb9d49" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:56:06 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b3bd756d-a473-4835-a68f-fe7413f261d0?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:07:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "895" ], + "Content-Length": [ "847" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectiong\",\"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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\"mappingRuleName\":\"EventsMapping1\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b3bd756d-a473-4835-a68f-fe7413f261d0?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0f64297c-f922-4b5f-ab11-e61421cd25b9?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b3bd756d-a473-4835-a68f-fe7413f261d0?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0f64297c-f922-4b5f-ab11-e61421cd25b9?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "29", "30" ], - "x-ms-client-request-id": [ "a1b6f30d-3cc7-4279-ac93-d2063df1e0a9", "a1b6f30d-3cc7-4279-ac93-d2063df1e0a9" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -192,39 +178,39 @@ "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": [ "e71a78be-f020-4ce9-820b-549f099fa018" ], - "x-ms-correlation-request-id": [ "5fe3ea08-1524-4172-90cf-1bb6808fae03" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T125636Z:5fe3ea08-1524-4172-90cf-1bb6808fae03" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:56:36 GMT" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:07:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "489" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b3bd756d-a473-4835-a68f-fe7413f261d0\",\"name\":\"b3bd756d-a473-4835-a68f-fe7413f261d0\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T12:56:06.2592753Z\",\"endTime\":\"2020-04-07T12:56:09.8217868Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"d356c22f-abee-46eb-a10e-4c04d7e6d8f7\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0f64297c-f922-4b5f-ab11-e61421cd25b9\",\"name\":\"0f64297c-f922-4b5f-ab11-e61421cd25b9\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:07:17.4705436Z\",\"endTime\":\"2020-08-03T02:07:21.1426983Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "29", "30", "31" ], - "x-ms-client-request-id": [ "a1b6f30d-3cc7-4279-ac93-d2063df1e0a9", "a1b6f30d-3cc7-4279-ac93-d2063df1e0a9", "a1b6f30d-3cc7-4279-ac93-d2063df1e0a9" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -233,85 +219,78 @@ "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": [ "edbb2438-6b06-426e-8553-c72db2f15aec" ], - "x-ms-correlation-request-id": [ "30343c45-93d8-432e-8b73-92247b126f10" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T125637Z:30343c45-93d8-432e-8b73-92247b126f10" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:56:36 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:07:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "896" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectiong\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"sharedAccessPolicyName\": \"iothubforread\",\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": { - "x-ms-unique-id": [ "32" ], - "x-ms-client-request-id": [ "2b6c465e-2509-4b29-9792-8466a333b4b5" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "412" ] + "Content-Length": [ "315" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "118a97d1-8498-4d74-b577-9d90a1f95856" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5c4124bb-aabb-4c42-bf1c-83adc061c138?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "eca50628-372b-4c84-8a6f-8a2cd29dfbe5" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T125639Z:eca50628-372b-4c84-8a6f-8a2cd29dfbe5" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:56:38 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5c4124bb-aabb-4c42-bf1c-83adc061c138?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=def3577d5629c723d9b553853d2d2a7d752681ef975b90fbd494f770f8090156;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:07:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "728" ], + "Content-Length": [ "674" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectionh\",\"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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\"mappingRuleName\":\"EventsMapping1\",\"sharedAccessPolicyName\":\"iothubforread\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5c4124bb-aabb-4c42-bf1c-83adc061c138?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5c4124bb-aabb-4c42-bf1c-83adc061c138?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "32", "33" ], - "x-ms-client-request-id": [ "2b6c465e-2509-4b29-9792-8466a333b4b5", "2b6c465e-2509-4b29-9792-8466a333b4b5" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -320,39 +299,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "98d2eb06-a539-4c6e-b1b2-67fd9ff1b0d7" ], - "x-ms-request-id": [ "bdfcb9ab-bc96-4150-8a61-249539be07fc" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T125709Z:98d2eb06-a539-4c6e-b1b2-67fd9ff1b0d7" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:57:08 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5c4124bb-aabb-4c42-bf1c-83adc061c138\",\"name\":\"5c4124bb-aabb-4c42-bf1c-83adc061c138\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T12:56:38.9220196Z\",\"endTime\":\"2020-04-07T12:56:39.2814354Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"9d9017ce-626e-4886-8d0b-4c1df8844883\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c\",\"name\":\"46a5a042-b5b5-4740-9b7f-97ac73e48f4c\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:07:49.0922345Z\",\"endTime\":\"2020-08-03T02:07:49.4203933Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "32", "33", "34" ], - "x-ms-client-request-id": [ "2b6c465e-2509-4b29-9792-8466a333b4b5", "2b6c465e-2509-4b29-9792-8466a333b4b5", "2b6c465e-2509-4b29-9792-8466a333b4b5" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -361,40 +340,40 @@ "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": [ "7ff014a6-b69b-4a7f-aa2c-1f88721d0bdc" ], - "x-ms-correlation-request-id": [ "47d04ab3-875e-407f-829e-4241d99d46e6" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T125710Z:47d04ab3-875e-407f-829e-4241d99d46e6" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 12:57:10 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "756" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectionh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"iothubforread\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "e6af83cd-9210-4009-bde7-bff4cfcbbc00" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "ffc4c05f-0bb2-4620-bb1c-0760f4e6adcd" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -403,85 +382,78 @@ "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": [ "d1af24d9-6ae3-4a73-b8b1-fb49d52034a1" ], - "x-ms-correlation-request-id": [ "2cd87fa3-8188-4d2b-95ba-23c48c0d64d2" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131311Z:2cd87fa3-8188-4d2b-95ba-23c48c0d64d2" ], + "x-ms-request-id": [ "246d48d4-83e2-4f79-a9f4-c8d7801ba5a2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:13:10 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "770" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\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": { - "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "72800a62-1dfe-4bde-8bb0-9a56018dd8e3" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "428" ] + "Content-Length": [ "333" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c7cc7112-041f-4bc2-a17d-20ea9f97c9ee" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1c2558f3-9344-41c0-9cb7-38fed9777b07?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "d26f241b-48c5-4755-b83d-f8ebea16f487" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131312Z:d26f241b-48c5-4755-b83d-f8ebea16f487" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:13:11 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1c2558f3-9344-41c0-9cb7-38fed9777b07?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=215f89ce1e3b7fe16702b151d790214d3e419a6068dd5b2f7cbbd791a4ac2087;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "742" ], + "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"mappingRuleName\":\"EventsMapping1\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1c2558f3-9344-41c0-9cb7-38fed9777b07?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1c2558f3-9344-41c0-9cb7-38fed9777b07?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "51", "52" ], - "x-ms-client-request-id": [ "72800a62-1dfe-4bde-8bb0-9a56018dd8e3", "72800a62-1dfe-4bde-8bb0-9a56018dd8e3" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -490,39 +462,39 @@ "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": [ "737082fd-bd1b-4215-a90f-a8d6da45d918" ], - "x-ms-correlation-request-id": [ "752e8ff6-0232-4cb9-be47-782060c72778" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131342Z:752e8ff6-0232-4cb9-be47-782060c72778" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:13:42 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "480" ], + "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/1c2558f3-9344-41c0-9cb7-38fed9777b07\",\"name\":\"1c2558f3-9344-41c0-9cb7-38fed9777b07\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T13:13:12.469762Z\",\"endTime\":\"2020-04-07T13:13:15.2041384Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"88aa55df-edb4-46ce-9e40-e95909960811\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d\",\"name\":\"57b04bb4-d8fc-4fcc-9571-2ae8f307613d\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:08:21.0630901Z\",\"endTime\":\"2020-08-03T02:08:23.3757689Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15+4": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "51", "52", "53" ], - "x-ms-client-request-id": [ "72800a62-1dfe-4bde-8bb0-9a56018dd8e3", "72800a62-1dfe-4bde-8bb0-9a56018dd8e3", "72800a62-1dfe-4bde-8bb0-9a56018dd8e3" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -531,40 +503,40 @@ "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": [ "693b453f-a053-47ce-96c0-fc381583ab4e" ], - "x-ms-correlation-request-id": [ "12b984ff-9a64-4a91-a97a-87c5d5d42f49" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131343Z:12b984ff-9a64-4a91-a97a-87c5d5d42f49" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:13:43 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "770" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnection\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnection\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubns/eventhubs/sdkpseventhub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "e5e78e11-9097-41dd-a77a-d99f03eac18d" ], + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "35eda697-8844-4c39-bb22-87b8e4e3ad96" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -573,85 +545,78 @@ "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": [ "b7fa4f1c-a78a-417c-8648-30e02b5bbedd" ], - "x-ms-correlation-request-id": [ "954ea9ca-14a4-45e5-9a7a-aa7821d03b37" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131344Z:954ea9ca-14a4-45e5-9a7a-aa7821d03b37" ], + "x-ms-request-id": [ "97b9eb22-f1f7-4231-b4fe-4eedd3abad1d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:13:44 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "896" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectiong\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\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": { - "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "9ef265f0-2586-4fb1-ae9e-f8ec824e139d" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "579" ] + "Content-Length": [ "488" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "651d0ec1-9241-405f-8b42-975818eff678" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d80a5718-8dda-4eb9-ac27-19b648e56ffd?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "de2623b4-14fe-4353-b46b-b647de6b6bfb" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131345Z:de2623b4-14fe-4353-b46b-b647de6b6bfb" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:13:45 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d80a5718-8dda-4eb9-ac27-19b648e56ffd?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:08:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "895" ], + "Content-Length": [ "847" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectiong\",\"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/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\"mappingRuleName\":\"EventsMapping1\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d80a5718-8dda-4eb9-ac27-19b648e56ffd?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f867cb52-368b-437a-a103-28a0fb506c7a?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d80a5718-8dda-4eb9-ac27-19b648e56ffd?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f867cb52-368b-437a-a103-28a0fb506c7a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "55", "56" ], - "x-ms-client-request-id": [ "9ef265f0-2586-4fb1-ae9e-f8ec824e139d", "9ef265f0-2586-4fb1-ae9e-f8ec824e139d" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -660,39 +625,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "d152f071-d781-41b2-a2ab-67d596550bb8" ], - "x-ms-request-id": [ "67157ce9-7acb-4d18-8697-00da0b938a11" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131415Z:d152f071-d781-41b2-a2ab-67d596550bb8" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:14:15 GMT" ], - "Set-Cookie": [ "ARRAffinity=b3c2d4d5282ede81ed15f3f78d2ac82595f2901483fcb7962c29f71395856c9e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:09:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "489" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d80a5718-8dda-4eb9-ac27-19b648e56ffd\",\"name\":\"d80a5718-8dda-4eb9-ac27-19b648e56ffd\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T13:13:45.3745626Z\",\"endTime\":\"2020-04-07T13:13:49.0151244Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"2de6eb9b-69c8-4b1c-957d-05bbe6a618c7\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f867cb52-368b-437a-a103-28a0fb506c7a\",\"name\":\"f867cb52-368b-437a-a103-28a0fb506c7a\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:08:53.0565133Z\",\"endTime\":\"2020-08-03T02:08:56.7082658Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15+4": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "55", "56", "57" ], - "x-ms-client-request-id": [ "9ef265f0-2586-4fb1-ae9e-f8ec824e139d", "9ef265f0-2586-4fb1-ae9e-f8ec824e139d", "9ef265f0-2586-4fb1-ae9e-f8ec824e139d" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -701,40 +666,40 @@ "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": [ "ec6492fa-873b-4608-8dbd-d533047abff5" ], - "x-ms-correlation-request-id": [ "74cbc020-e17e-469e-81a6-09f29f2b64f3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131416Z:74cbc020-e17e-469e-81a6-09f29f2b64f3" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:14:16 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=7e1ae2d9d6ffff3dfc0a49ef14149354611612ab62434b1ba4813a66a18e1335;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:09:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "896" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectiong\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectiong\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Storage/storageAccounts/sdkpsstorage\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.EventHub/namespaces/sdkpseventhubnsg/eventhubs/sdkpseventhubg\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "fe8d2d52-6ce3-4a57-8d2d-dd63a4e42bb1" ], + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "d65f3a52-8f89-49cb-8991-09bb5fb6c1a9" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -743,85 +708,78 @@ "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": [ "1d7ee8e9-4d73-410a-af58-37f34f11efe9" ], - "x-ms-correlation-request-id": [ "8129f2b4-3905-4e77-8eb3-23d847e46429" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131417Z:8129f2b4-3905-4e77-8eb3-23d847e46429" ], + "x-ms-request-id": [ "3b11ce74-433f-492e-8297-703b9c1354e5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:14:17 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=ef3de0f4cd17f8e9f7d2fa3d3db2dfb16b68de461929f7c4880cf75c0d094a4e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:09:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "756" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectionh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"iothubforread\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"sharedAccessPolicyName\": \"iothubforread\",\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": { - "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "841d6abe-a5d7-4c12-9f3c-a958d96fb5ef" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "412" ] + "Content-Length": [ "315" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9482df6b-5406-4c12-b6dc-5087f982a9c8" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/184ea9ee-34df-4f28-bb6e-13546bb76edb?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "197" ], - "x-ms-correlation-request-id": [ "56a94e24-3aca-429b-945b-44933e34a28a" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131419Z:56a94e24-3aca-429b-945b-44933e34a28a" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:14:18 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/184ea9ee-34df-4f28-bb6e-13546bb76edb?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=231057e07a83c4308bf983e7dc86c3ea07391dfcb2e933d9998a48444064ed8d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:09:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "728" ], + "Content-Length": [ "674" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectionh\",\"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/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\"mappingRuleName\":\"EventsMapping1\",\"sharedAccessPolicyName\":\"iothubforread\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/184ea9ee-34df-4f28-bb6e-13546bb76edb?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/74ac0ab4-10dd-43fd-8c55-9d7419951095?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/184ea9ee-34df-4f28-bb6e-13546bb76edb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/74ac0ab4-10dd-43fd-8c55-9d7419951095?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "59", "60" ], - "x-ms-client-request-id": [ "841d6abe-a5d7-4c12-9f3c-a958d96fb5ef", "841d6abe-a5d7-4c12-9f3c-a958d96fb5ef" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -830,39 +788,39 @@ "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": [ "d8c6eb46-3965-4570-aadf-e6d884f32232" ], - "x-ms-correlation-request-id": [ "3c03144c-650e-4d87-b733-d04e89433880" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131449Z:3c03144c-650e-4d87-b733-d04e89433880" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:14:48 GMT" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:09:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/184ea9ee-34df-4f28-bb6e-13546bb76edb\",\"name\":\"184ea9ee-34df-4f28-bb6e-13546bb76edb\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-07T13:14:19.0561373Z\",\"endTime\":\"2020-04-07T13:14:19.8686606Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"c366274a-5e2b-4c25-b0b2-ff22eebbea9a\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/74ac0ab4-10dd-43fd-8c55-9d7419951095\",\"name\":\"74ac0ab4-10dd-43fd-8c55-9d7419951095\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:09:25.5993559Z\",\"endTime\":\"2020-08-03T02:09:25.9274932Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15+4": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "59", "60", "61" ], - "x-ms-client-request-id": [ "841d6abe-a5d7-4c12-9f3c-a958d96fb5ef", "841d6abe-a5d7-4c12-9f3c-a958d96fb5ef", "841d6abe-a5d7-4c12-9f3c-a958d96fb5ef" ], + "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -871,26 +829,26 @@ "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": [ "c19e1633-e380-4ebe-b7eb-b7b941aa11cc" ], - "x-ms-correlation-request-id": [ "376666e8-2008-474c-a1b0-d15ed02a2298" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200407T131450Z:376666e8-2008-474c-a1b0-d15ed02a2298" ], + "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 07 Apr 2020 13:14:49 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:09:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "756" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb/DataConnections/sdkpsdataconnectionh\",\"name\":\"sdkpsclustereu/sdkpowershelldb/sdkpsdataconnectionh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdkpowershellrg/providers/Microsoft.Devices/IotHubs/sdkpsiothub\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"iothubforread\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 b/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 index 1469469b1539..d3e194ba7188 100644 --- a/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzKustoDataConnection.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -21,17 +21,14 @@ Describe 'Update-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName - $eventhubNS= $env.eventhubNSName - $eventhub= $env.eventhubName + $eventhubNS = $env.eventhubNSName + $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingNameForUpdate - $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' { @@ -41,19 +38,16 @@ Describe 'Update-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName + "g" - $eventhubNS= $env.eventhubNSNameForEventGrid - $eventhub= $env.eventhubNameForEventGrid + $eventhubNS = $env.eventhubNSNameForEventGrid + $eventhub = $env.eventhubNameForEventGrid $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.tableMappingNameForUpdate - $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.tableMappingNameForUpdate - $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' { @@ -83,18 +74,15 @@ Describe 'Update-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName - $eventhubNS= $env.eventhubNSName - $eventhub= $env.eventhubName + $eventhubNS = $env.eventhubNSName + $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingNameForUpdate - $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' { @@ -104,20 +92,17 @@ Describe 'Update-AzKustoDataConnection' { $clusterName = $env.clusterName $databaseName = $env.databaseName $dataConnectionName = $env.dataConnectionName + "g" - $eventhubNS= $env.eventhubNSNameForEventGrid - $eventhub= $env.eventhubNameForEventGrid + $eventhubNS = $env.eventhubNSNameForEventGrid + $eventhub = $env.eventhubNameForEventGrid $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.tableMappingNameForUpdate - $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.tableMappingNameForUpdate - $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 50359eb4a44e..56d9abc0022c 100644 --- a/src/Kusto/test/Update-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/Update-AzKustoDatabase.Recording.json @@ -1,18 +1,53 @@ { - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { - "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P3D\",\r\n \"softDeletePeriod\": \"P6D\"\r\n }\r\n}", + "Method": "GET", + "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": [ "12" ], - "x-ms-client-request-id": [ "3f1f412c-741a-4a3e-95fe-891ced600411" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase" ], - "FullCommandName": [ "Update-AzKustoDatabase_Update" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "ce9b4184-d26e-4e4f-b6e1-a71b64901d2f" ], + "CommandName": [ "Get-AzKustoDatabase" ], + "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "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": [ "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": [ "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": [ "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/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/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/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": { + }, "ContentHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ "139" ] @@ -21,41 +56,41 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "59bcc30d-d98f-4e38-8d41-a9577e5689c4" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d7848bb1-0088-4064-8362-ba689f6d742c?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "197" ], - "x-ms-correlation-request-id": [ "4fca1c62-6e8c-4933-84b4-2aa85bbd0971" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111559Z:4fca1c62-6e8c-4933-84b4-2aa85bbd0971" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:15:59 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d7848bb1-0088-4064-8362-ba689f6d742c?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:04:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "409" ], + "Content-Length": [ "421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P3D\",\"softDeletePeriod\":\"P6D\",\"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/d7848bb1-0088-4064-8362-ba689f6d742c?api-version=2020-02-15+2": { + "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/d7848bb1-0088-4064-8362-ba689f6d742c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/67faf98e-a847-4339-b5cb-60608ed4f128?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "12", "13" ], - "x-ms-client-request-id": [ "3f1f412c-741a-4a3e-95fe-891ced600411", "3f1f412c-741a-4a3e-95fe-891ced600411" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -64,39 +99,39 @@ "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": [ "62bfb233-3925-4c2d-b7c9-c74b8eb65457" ], - "x-ms-correlation-request-id": [ "08991112-83c6-44c0-a8c5-71fb79974748" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111629Z:08991112-83c6-44c0-a8c5-71fb79974748" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:16:29 GMT" ], - "Set-Cookie": [ "ARRAffinity=04bed633f23e09623dac6b627accce6240efa1e9739ec9328a5f0adccfa09faa;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:05:06 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/d7848bb1-0088-4064-8362-ba689f6d742c\",\"name\":\"d7848bb1-0088-4064-8362-ba689f6d742c\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-06T11:15:59.395368Z\",\"endTime\":\"2020-04-06T11:16:01.0264132Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"f99811c6-7d80-492c-aea6-b6470e8bfa10\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/67faf98e-a847-4339-b5cb-60608ed4f128\",\"name\":\"67faf98e-a847-4339-b5cb-60608ed4f128\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:04:36.7496228Z\",\"endTime\":\"2020-08-03T02:04:39.4533059Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"43f1494d-e579-4bb9-84f0-26e34f737d27\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+3": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "12", "13", "14" ], - "x-ms-client-request-id": [ "3f1f412c-741a-4a3e-95fe-891ced600411", "3f1f412c-741a-4a3e-95fe-891ced600411", "3f1f412c-741a-4a3e-95fe-891ced600411" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,41 +140,76 @@ "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": [ "0edf991d-1f49-4f83-90f8-a8d1c71a35a6" ], - "x-ms-correlation-request-id": [ "9a0cf3e4-63ce-41fd-9f4e-2df67c384002" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111630Z:9a0cf3e4-63ce-41fd-9f4e-2df67c384002" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "e846055a-af0a-40fa-bc96-ec8241696215" ], + "CommandName": [ "Get-AzKustoDatabase" ], + "FullCommandName": [ "Get-AzKustoDatabase_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:16:29 GMT" ], + "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "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": [ "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": [ "Mon, 03 Aug 2020 02:05:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"ReadOnlyFollowing\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P3D\"\r\n }\r\n}", + "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": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "f32b0d09-d20a-430b-8305-4cd13111f200" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase" ], - "FullCommandName": [ "Update-AzKustoDatabase_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -149,41 +219,41 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d1501646-32a1-4107-993e-109aae14ef1c" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0204c45b-bfe3-4611-89ab-f626126e1b52?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], - "x-ms-correlation-request-id": [ "5bb8b3eb-6d23-4d0f-adb4-bc5e4e6f0855" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111631Z:5bb8b3eb-6d23-4d0f-adb4-bc5e4e6f0855" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:16:31 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0204c45b-bfe3-4611-89ab-f626126e1b52?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=4c87a3fd2d13fe8deabf01a0da1890a3564e836c7c9f153e312617237a9297d0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:05:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "394" ], + "Content-Length": [ "406" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereuf/sdkpowershelldb\",\"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\":\"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/0204c45b-bfe3-4611-89ab-f626126e1b52?api-version=2020-02-15+2": { + "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/0204c45b-bfe3-4611-89ab-f626126e1b52?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1aaed376-bb54-4815-9066-e72530ed8969?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "15", "16" ], - "x-ms-client-request-id": [ "f32b0d09-d20a-430b-8305-4cd13111f200", "f32b0d09-d20a-430b-8305-4cd13111f200" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -192,39 +262,39 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "40129d2e-7c99-4333-b223-0a451a02f66a" ], - "x-ms-request-id": [ "dc2b0e1d-8244-4425-9c6a-e67646560f26" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111702Z:40129d2e-7c99-4333-b223-0a451a02f66a" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:01 GMT" ], - "Set-Cookie": [ "ARRAffinity=f977ea28325f4c100ed19c1a7ed6395c7554e0af5ce62499bbee5975165c7757;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:05:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0204c45b-bfe3-4611-89ab-f626126e1b52\",\"name\":\"0204c45b-bfe3-4611-89ab-f626126e1b52\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-06T11:16:31.7794465Z\",\"endTime\":\"2020-04-06T11:16:34.3343115Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"d09ce928-08f7-4bfb-bdf4-3a7fcd92d988\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/1aaed376-bb54-4815-9066-e72530ed8969\",\"name\":\"1aaed376-bb54-4815-9066-e72530ed8969\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:05:08.6907829Z\",\"endTime\":\"2020-08-03T02:05:10.9307029Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"bfc10ec5-d4b4-427a-9cb3-b19eb1a3fcd9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15+3": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "15", "16", "17" ], - "x-ms-client-request-id": [ "f32b0d09-d20a-430b-8305-4cd13111f200", "f32b0d09-d20a-430b-8305-4cd13111f200", "f32b0d09-d20a-430b-8305-4cd13111f200" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -233,40 +303,40 @@ "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": [ "6731f8c7-5389-4aa1-b474-19b834fecc3d" ], - "x-ms-correlation-request-id": [ "031a5f9c-5838-4c76-99da-76debc1fa4f1" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111703Z:031a5f9c-5838-4c76-99da-76debc1fa4f1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:02 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:05:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "755" ], + "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereuf/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"attachedDatabaseConfigurationName\":\"sdkpowershellfconfig\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "548c9c86-b7da-490a-bbce-4bcd5c1a04b5" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "46dc3475-a725-45ac-b5e9-7cbd6b6a593f" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -275,41 +345,76 @@ "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": [ "c923c8cf-d6cb-4da4-b1d0-251ab6c44fab" ], - "x-ms-correlation-request-id": [ "c13eaa52-712d-45a8-a5f6-8ac85ea13d17" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111703Z:c13eaa52-712d-45a8-a5f6-8ac85ea13d17" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "0c3b4c78-a1b0-4845-b222-c67cbf7684fc" ], + "CommandName": [ "Get-AzKustoDatabase" ], + "FullCommandName": [ "Get-AzKustoDatabase_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:03 GMT" ], + "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=04bed633f23e09623dac6b627accce6240efa1e9739ec9328a5f0adccfa09faa;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], + "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": [ "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": [ "Mon, 03 Aug 2020 02:05:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+2": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P3D\",\r\n \"softDeletePeriod\": \"P6D\"\r\n }\r\n}", + "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": { - "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "5122a300-9e82-4fce-8b72-380fc3fc4221" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase" ], - "FullCommandName": [ "Update-AzKustoDatabase_UpdateViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -319,41 +424,41 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "06275396-2be0-48e7-9ebc-aef1daf53a70" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e13f702c-7a94-428d-b778-5c1fcd7e26c9?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "195" ], - "x-ms-correlation-request-id": [ "3ccc86ac-032c-497e-9956-65989391ac59" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111705Z:3ccc86ac-032c-497e-9956-65989391ac59" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:04 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e13f702c-7a94-428d-b778-5c1fcd7e26c9?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:05:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "409" ], + "Content-Length": [ "421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P3D\",\"softDeletePeriod\":\"P6D\",\"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/e13f702c-7a94-428d-b778-5c1fcd7e26c9?api-version=2020-02-15+3": { + "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/e13f702c-7a94-428d-b778-5c1fcd7e26c9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/76df9803-5b94-4e04-af2e-2f72e3d367f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "19", "20" ], - "x-ms-client-request-id": [ "5122a300-9e82-4fce-8b72-380fc3fc4221", "5122a300-9e82-4fce-8b72-380fc3fc4221" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -362,39 +467,39 @@ "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": [ "8e941475-393f-4ac5-86a1-07c3e2e07131" ], - "x-ms-correlation-request-id": [ "532b17c9-573b-48a7-9d7b-ac390456fa45" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111735Z:532b17c9-573b-48a7-9d7b-ac390456fa45" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:34 GMT" ], - "Set-Cookie": [ "ARRAffinity=4c87a3fd2d13fe8deabf01a0da1890a3564e836c7c9f153e312617237a9297d0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:06:11 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/e13f702c-7a94-428d-b778-5c1fcd7e26c9\",\"name\":\"e13f702c-7a94-428d-b778-5c1fcd7e26c9\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-06T11:17:04.9068115Z\",\"endTime\":\"2020-04-06T11:17:07.125724Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"0629fda2-9b2a-459c-b173-4314ec2c89c9\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/76df9803-5b94-4e04-af2e-2f72e3d367f3\",\"name\":\"76df9803-5b94-4e04-af2e-2f72e3d367f3\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:05:41.6729771Z\",\"endTime\":\"2020-08-03T02:05:43.6106955Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"5aba41ba-1bd9-435d-bdfc-a8da1efb1c22\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15+4": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "19", "20", "21" ], - "x-ms-client-request-id": [ "5122a300-9e82-4fce-8b72-380fc3fc4221", "5122a300-9e82-4fce-8b72-380fc3fc4221", "5122a300-9e82-4fce-8b72-380fc3fc4221" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -403,40 +508,40 @@ "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": [ "89697778-49d2-4d67-88bd-b8a5cb6ee02f" ], - "x-ms-correlation-request-id": [ "16f801e5-ac17-457a-9041-ee47e74dfb48" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111735Z:16f801e5-ac17-457a-9041-ee47e74dfb48" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:34 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=4bb1416c4d9382a93b901692113c112c880e463b99069071d83beefe042ed576;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:06:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "506" ], + "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereu/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15+1": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "be92aa82-0b48-4016-a516-83dc9ae0676c" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "0ac6e9a7-136d-4356-bc5f-921e8cca2a14" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -445,41 +550,76 @@ "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": [ "69ae51d4-f1eb-43fb-8d72-a2d859e473a3" ], - "x-ms-correlation-request-id": [ "4d3b3442-79ae-492d-aeb2-fdaa14fec0a3" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111736Z:4d3b3442-79ae-492d-aeb2-fdaa14fec0a3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], + "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": [ "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": [ "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "053bc967-e027-479f-921d-fa4f2b2a46b5" ], + "CommandName": [ "Get-AzKustoDatabase" ], + "FullCommandName": [ "Get-AzKustoDatabase_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:35 GMT" ], + "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=04bed633f23e09623dac6b627accce6240efa1e9739ec9328a5f0adccfa09faa;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], + "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": [ "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": [ "Mon, 03 Aug 2020 02:06:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "755" ], + "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereuf/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"attachedDatabaseConfigurationName\":\"sdkpowershellfconfig\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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\":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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15+2": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadOnlyFollowing\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P3D\"\r\n }\r\n}", "Headers": { - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "f6b3c84e-dbb1-41b8-8098-a7522193be8a" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase" ], - "FullCommandName": [ "Update-AzKustoDatabase_UpdateViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -489,41 +629,41 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c0699cc7-887c-477b-80bb-3c842716e8ca" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/329c8cdd-3178-4c44-9851-88e5cedb8cf1?api-version=2020-02-15" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "194" ], - "x-ms-correlation-request-id": [ "d43a53b7-3179-4d81-a9d2-815cf07497fb" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111737Z:d43a53b7-3179-4d81-a9d2-815cf07497fb" ], + "ETag": [ "\"\"" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:17:37 GMT" ], - "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/329c8cdd-3178-4c44-9851-88e5cedb8cf1?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Set-Cookie": [ "ARRAffinity=deac3c942b2a72b721942f97372cf2a3052effbe4aa0b896664f8887a4bd559d;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:06:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "394" ], + "Content-Length": [ "406" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereuf/sdkpowershelldb\",\"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/329c8cdd-3178-4c44-9851-88e5cedb8cf1?api-version=2020-02-15+3": { + "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/329c8cdd-3178-4c44-9851-88e5cedb8cf1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0b13ee04-5cfc-492b-97f7-7cbfc50510e5?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "23", "24" ], - "x-ms-client-request-id": [ "f6b3c84e-dbb1-41b8-8098-a7522193be8a", "f6b3c84e-dbb1-41b8-8098-a7522193be8a" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -532,39 +672,39 @@ "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": [ "26b19694-52ed-47ef-b3b1-1094779c9a57" ], - "x-ms-correlation-request-id": [ "4eb8fa9b-59f2-40f7-be18-fbe728d0c643" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111809Z:4eb8fa9b-59f2-40f7-be18-fbe728d0c643" ], + "x-ms-correlation-request-id": [ "7d0f8ec2-2deb-4e15-90be-f2515d972d22" ], + "x-ms-request-id": [ "59e6e1d5-1e1c-4218-bc34-ddb0b22231a1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020644Z:7d0f8ec2-2deb-4e15-90be-f2515d972d22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:18:08 GMT" ], - "Set-Cookie": [ "ARRAffinity=5d8f46e797674adfa6f345dd92c7bb8ccffb7a39a253ecaf84bf8923217e3248;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:06:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/329c8cdd-3178-4c44-9851-88e5cedb8cf1\",\"name\":\"329c8cdd-3178-4c44-9851-88e5cedb8cf1\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-06T11:17:37.7534159Z\",\"endTime\":\"2020-04-06T11:17:40.3628759Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"65ccc0bb-3d8c-45a3-a16f-36e7bede46a2\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0b13ee04-5cfc-492b-97f7-7cbfc50510e5\",\"name\":\"0b13ee04-5cfc-492b-97f7-7cbfc50510e5\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:06:13.9709274Z\",\"endTime\":\"2020-08-03T02:06:17.974123Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"f09953f0-c737-4378-9c4a-ce12c3977f13\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15+4": { + "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/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "23", "24", "25" ], - "x-ms-client-request-id": [ "f6b3c84e-dbb1-41b8-8098-a7522193be8a", "f6b3c84e-dbb1-41b8-8098-a7522193be8a", "f6b3c84e-dbb1-41b8-8098-a7522193be8a" ], + "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" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -573,26 +713,26 @@ "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": [ "9e4787bd-c75d-4f69-9741-f63f576bc4ea" ], - "x-ms-correlation-request-id": [ "a17f6073-a21b-435e-8a9e-3c0655bc8f4c" ], - "x-ms-routing-request-id": [ "GERMANYWESTCENTRAL:20200406T111809Z:a17f6073-a21b-435e-8a9e-3c0655bc8f4c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "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": [ "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" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 06 Apr 2020 11:18:09 GMT" ], - "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=e34cd42d8bdf1120fb4b3a4d2cc62821863228e00fd30154bbfab9ed251bfdc1;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ] + "Date": [ "Mon, 03 Aug 2020 02:06:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "755" ], + "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereuf/Databases/sdkpowershelldb\",\"name\":\"sdkpsclustereuf/sdkpowershelldb\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdkpowershellrg/providers/Microsoft.Kusto/Clusters/sdkpsclustereu\",\"attachedDatabaseConfigurationName\":\"sdkpowershellfconfig\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":6,\"softDeletePeriod\":\"P6D\",\"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/Update-AzKustoDatabase.Tests.ps1 b/src/Kusto/test/Update-AzKustoDatabase.Tests.ps1 index 9926cf26e102..38aff80d6674 100644 --- a/src/Kusto/test/Update-AzKustoDatabase.Tests.ps1 +++ b/src/Kusto/test/Update-AzKustoDatabase.Tests.ps1 @@ -7,7 +7,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzKustoDatabase.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -16,46 +16,58 @@ while(-not $mockingPath) { Describe 'Update-AzKustoDatabase' { It 'UpdateExpandedReadWrite' { $clusterName = $env.clusterName - $databaseFullName = $clusterName + "/" + $env.databaseName - - $softDeletePeriodInDaysUpdated = Get-Updated-Soft-Delete-Period-In-Days - $hotCachePeriodInDaysUpdated = Get-Updated-Hot-Cache-Period-In-Days - - $databaseUpdatedWithParameters = Update-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $clusterName -Name $env.databaseName -Location $env.location -Kind "ReadWrite" -SoftDeletePeriod $softDeletePeriodInDaysUpdated -HotCachePeriod $hotCachePeriodInDaysUpdated + $databaseName = $env.databaseName + $resourceGroupName = $env.resourceGroupName + $databaseFullName = $clusterName + "/" + $databaseName + + $databaseItem = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName + $softDeletePeriodInDaysUpdated = $databaseItem.SoftDeletePeriod.Add((New-TimeSpan -Days 1)) + $hotCachePeriodInDaysUpdated = $databaseItem.HotCachePeriod.Add((New-TimeSpan -Days 1)) + + $databaseUpdatedWithParameters = Update-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName -Location $env.location -Kind "ReadWrite" -SoftDeletePeriod $softDeletePeriodInDaysUpdated -HotCachePeriod $hotCachePeriodInDaysUpdated Validate_Database $databaseUpdatedWithParameters $databaseFullName $env.location $env.databaseType $softDeletePeriodInDaysUpdated $hotCachePeriodInDaysUpdated } It 'UpdateExpandedReadOnlyFollowing' { $clusterName = $env.followerClusterName - $databaseFullName = $clusterName + "/" + $env.databaseName - - $softDeletePeriodInDaysUpdated = Get-Updated-Soft-Delete-Period-In-Days - $hotCachePeriodInDaysUpdated = Get-Updated-Hot-Cache-Period-In-Days - - $databaseUpdatedWithParameters = Update-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $clusterName -Name $env.databaseName -Location $env.location -Kind "ReadOnlyFollowing" -HotCachePeriod $hotCachePeriodInDaysUpdated + $resourceGroupName = $env.resourceGroupName + $databaseName = $env.databaseName + $databaseFullName = $clusterName + "/" + $databaseName + + $databaseItem = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName + $softDeletePeriodInDaysUpdated = $databaseItem.SoftDeletePeriod + $hotCachePeriodInDaysUpdated = $databaseItem.HotCachePeriod.Add((New-TimeSpan -Days 1)) + + $databaseUpdatedWithParameters = Update-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName -Location $env.location -Kind "ReadOnlyFollowing" -HotCachePeriod $hotCachePeriodInDaysUpdated Validate_Database $databaseUpdatedWithParameters $databaseFullName $env.location $env.databaseType $softDeletePeriodInDaysUpdated $hotCachePeriodInDaysUpdated } It 'UpdateViaIdentityExpandedReadWrite' { $clusterName = $env.clusterName - $databaseFullName = $clusterName + "/" + $env.databaseName - - $softDeletePeriodInDaysUpdated = Get-Updated-Soft-Delete-Period-In-Days - $hotCachePeriodInDaysUpdated = Get-Updated-Hot-Cache-Period-In-Days - - $database = Get-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $clusterName -Name $env.databaseName + $resourceGroupName = $env.resourceGroupName + $databaseName = $env.databaseName + $databaseFullName = $clusterName + "/" + $databaseName + + $databaseItem = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName + $softDeletePeriodInDaysUpdated = $databaseItem.SoftDeletePeriod.Add((New-TimeSpan -Days -1)) + $hotCachePeriodInDaysUpdated = $databaseItem.HotCachePeriod.Add((New-TimeSpan -Days -1)) + + $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName $databaseUpdatedWithParameters = Update-AzKustoDatabase -InputObject $database -Location $env.location -Kind "ReadWrite" -SoftDeletePeriod $softDeletePeriodInDaysUpdated -HotCachePeriod $hotCachePeriodInDaysUpdated Validate_Database $databaseUpdatedWithParameters $databaseFullName $env.location $env.databaseType $softDeletePeriodInDaysUpdated $hotCachePeriodInDaysUpdated } It 'UpdateViaIdentityExpandedReadOnlyFollowing' { $clusterName = $env.followerClusterName - $databaseFullName = $clusterName + "/" + $env.databaseName - - $softDeletePeriodInDaysUpdated = Get-Updated-Soft-Delete-Period-In-Days - $hotCachePeriodInDaysUpdated = Get-Updated-Hot-Cache-Period-In-Days - - $database = Get-AzKustoDatabase -ResourceGroupName $env.resourceGroupName -ClusterName $clusterName -Name $env.databaseName + $resourceGroupName = $env.resourceGroupName + $databaseName = $env.databaseName + $databaseFullName = $clusterName + "/" + $databaseName + + $databaseItem = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName + $softDeletePeriodInDaysUpdated = $databaseItem.SoftDeletePeriod + $hotCachePeriodInDaysUpdated = $databaseItem.HotCachePeriod.Add((New-TimeSpan -Days -1)) + + $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName $databaseUpdatedWithParameters = Update-AzKustoDatabase -InputObject $database -Location $env.location -Kind "ReadOnlyFollowing" -HotCachePeriod $hotCachePeriodInDaysUpdated Validate_Database $databaseUpdatedWithParameters $databaseFullName $env.location $env.databaseType $softDeletePeriodInDaysUpdated $hotCachePeriodInDaysUpdated } diff --git a/src/Kusto/test/common.ps1 b/src/Kusto/test/common.ps1 index 64ee61df9ad8..e35de7dee17d 100644 --- a/src/Kusto/test/common.ps1 +++ b/src/Kusto/test/common.ps1 @@ -132,7 +132,7 @@ function Validate_Cluster{ $Cluster.ProvisioningState | Should Be $ProvisioningState $Cluster.Type | Should Be $ResourceType $Cluster.SkuName | Should Be $SkuName - $Cluster.SkuTier | Should Be $SkuTier + $Cluster.SkuTier | Should Be $SkuTier $Cluster.SkuCapacity | Should Be $Capacity } @@ -150,7 +150,7 @@ function Validate_Database { $Database.Name | Should Be $DatabaseFullName $Database.Location | Should Be $Location $Database.Type | Should Be $ResourceType - $Database.SoftDeletePeriod | Should Be $SoftDeletePeriodInDays + $Database.SoftDeletePeriod | Should Be $SoftDeletePeriodInDays $Database.HotCachePeriod | Should Be $HotCachePeriodInDays } @@ -167,7 +167,7 @@ function Validate_PrincipalAssignment { $PrincipalAssignment.Name | Should Be $PrincipalAssignmentFullName $PrincipalAssignment.PrincipalId | Should Be $PrincipalId $PrincipalAssignment.PrincipalType | Should Be $PrincipalType - $PrincipalAssignment.Role | Should Be $Role + $PrincipalAssignment.Role | Should Be $Role } <# @@ -179,17 +179,11 @@ 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 + $DataConnection.Kind | Should Be $kind } <# @@ -202,18 +196,12 @@ 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 + $DataConnection.Kind | Should Be $kind } <# @@ -226,18 +214,12 @@ 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 + $DataConnection.Kind | Should Be $kind } function Validate_AttachedDatabaseConfiguration { @@ -250,7 +232,7 @@ function Validate_AttachedDatabaseConfiguration { $AttachedDatabaseConfigurationCreated.Name | Should Be $AttachedDatabaseConfigurationFullName $AttachedDatabaseConfigurationCreated.Location | Should Be $Location $AttachedDatabaseConfigurationCreated.ClusterResourceId | Should Be $ClusterResourceId - $AttachedDatabaseConfigurationCreated.DatabaseName | Should Be $DatabaseName + $AttachedDatabaseConfigurationCreated.DatabaseName | Should Be $DatabaseName $AttachedDatabaseConfigurationCreated.DefaultPrincipalsModificationKind | Should Be $DefaultPrincipalsModificationKind } diff --git a/src/Kusto/test/constants.json b/src/Kusto/test/constants.json new file mode 100644 index 000000000000..32df99ba12cd --- /dev/null +++ b/src/Kusto/test/constants.json @@ -0,0 +1,23 @@ +{ + "location" : "East US", + "skuTier" : "Standard", + "skuName" : "Standard_D11_v2", + "updatedSkuName" : "Standard_D12_v2", + "capacity" : 2, + "defaultPrincipalsModificationKind": "Union", + "langExt1": "R", + "langExt2": "PYTHON", + "resourceType" : "Microsoft.Kusto/Clusters", + "databaseType": "Microsoft.Kusto/Clusters/Databases", + "iothubSharedAccessPolicyName": "registryRead", + "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", + "databasePrincipalAssignmentResourceType": "Microsoft.Kusto/Clusters/Databases/principalAssignments", + "dataConnectionResourceType": "Microsoft.Kusto/Clusters/Databases/dataConnections", + "principalAssignmentName": "KustoClientsScenarioTest", + "principalId": "713c3475-5021-4f3b-a650-eaa9a83f25a4", + "principalType": "App", + "principalRole": "AllDatabasesViewer", + "databasePrincipalRole": "Viewer", + "principalAssignmentName1": "principalassignment1", + "principalId1": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0" + } \ 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 new file mode 100644 index 000000000000..9da5ba135bcd --- /dev/null +++ b/src/Kusto/test/deployment-templates/event-grid/parameters.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "namespaces_sdkpseventhubnsg_name": { + "value": "eventhubnsgridbgiwc7" + }, + "eventhubg_name": { + "value": "eventgridbgiwc7" + } + } +} diff --git a/src/Kusto/test/deployment-templates/event-grid/template.json b/src/Kusto/test/deployment-templates/event-grid/template.json new file mode 100644 index 000000000000..ea3f20136f70 --- /dev/null +++ b/src/Kusto/test/deployment-templates/event-grid/template.json @@ -0,0 +1,89 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "namespaces_sdkpseventhubnsg_name": { + "defaultValue": "sdkpseventhubnsg", + "type": "String" + }, + "eventhubg_name": { + "defaultValue": "sdkpseventhubg", + "type": "String" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.EventHub/namespaces", + "apiVersion": "2018-01-01-preview", + "name": "[parameters('namespaces_sdkpseventhubnsg_name')]", + "location": "East US", + "sku": { + "name": "Basic", + "tier": "Basic", + "capacity": 1 + }, + "properties": { + "zoneRedundant": false, + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "kafkaEnabled": false + } + }, + { + "type": "Microsoft.EventHub/namespaces/AuthorizationRules", + "apiVersion": "2017-04-01", + "name": "[concat(parameters('namespaces_sdkpseventhubnsg_name'), '/RootManageSharedAccessKey')]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubnsg_name'))]" + ], + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } + }, + { + "type": "Microsoft.EventHub/namespaces/eventhubs", + "apiVersion": "2017-04-01", + "name": "[concat(parameters('namespaces_sdkpseventhubnsg_name'), '/', parameters('eventhubg_name'))]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubnsg_name'))]" + ], + "properties": { + "messageRetentionInDays": 1, + "partitionCount": 2, + "status": "Active" + } + }, + { + "type": "Microsoft.EventHub/namespaces/networkRuleSets", + "apiVersion": "2018-01-01-preview", + "name": "[concat(parameters('namespaces_sdkpseventhubnsg_name'), '/default')]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubnsg_name'))]" + ], + "properties": { + "defaultAction": "Deny", + "virtualNetworkRules": [], + "ipRules": [] + } + }, + { + "type": "Microsoft.EventHub/namespaces/eventhubs/consumergroups", + "apiVersion": "2017-04-01", + "name": "[concat(parameters('namespaces_sdkpseventhubnsg_name'), '/', parameters('eventhubg_name'), '/$Default')]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces/eventhubs', parameters('namespaces_sdkpseventhubnsg_name'), parameters('eventhubg_name'))]", + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubnsg_name'))]" + ], + "properties": {} + } + ] +} \ No newline at end of file diff --git a/src/Kusto/test/deployment-templates/event-hub/parameters.json b/src/Kusto/test/deployment-templates/event-hub/parameters.json new file mode 100644 index 000000000000..1ee6be84e8a4 --- /dev/null +++ b/src/Kusto/test/deployment-templates/event-hub/parameters.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "namespaces_sdkpseventhubns_name": { + "value": "eventhubnslbfexs" + }, + "eventhub_name": { + "value": "eventhublbfexs" + } + } +} diff --git a/src/Kusto/test/deployment-templates/event-hub/template.json b/src/Kusto/test/deployment-templates/event-hub/template.json new file mode 100644 index 000000000000..1601a9e1f62c --- /dev/null +++ b/src/Kusto/test/deployment-templates/event-hub/template.json @@ -0,0 +1,89 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "namespaces_sdkpseventhubns_name": { + "defaultValue": "sdkpseventhubns", + "type": "String" + }, + "eventhub_name": { + "defaultValue": "sdkpseventhub", + "type": "String" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.EventHub/namespaces", + "apiVersion": "2018-01-01-preview", + "name": "[parameters('namespaces_sdkpseventhubns_name')]", + "location": "East US", + "sku": { + "name": "Basic", + "tier": "Basic", + "capacity": 1 + }, + "properties": { + "zoneRedundant": false, + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "kafkaEnabled": false + } + }, + { + "type": "Microsoft.EventHub/namespaces/AuthorizationRules", + "apiVersion": "2017-04-01", + "name": "[concat(parameters('namespaces_sdkpseventhubns_name'), '/RootManageSharedAccessKey')]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubns_name'))]" + ], + "properties": { + "rights": [ + "Listen", + "Manage", + "Send" + ] + } + }, + { + "type": "Microsoft.EventHub/namespaces/eventhubs", + "apiVersion": "2017-04-01", + "name": "[concat(parameters('namespaces_sdkpseventhubns_name'), '/', parameters('eventhub_name'))]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubns_name'))]" + ], + "properties": { + "messageRetentionInDays": 1, + "partitionCount": 2, + "status": "Active" + } + }, + { + "type": "Microsoft.EventHub/namespaces/networkRuleSets", + "apiVersion": "2018-01-01-preview", + "name": "[concat(parameters('namespaces_sdkpseventhubns_name'), '/default')]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubns_name'))]" + ], + "properties": { + "defaultAction": "Deny", + "virtualNetworkRules": [], + "ipRules": [] + } + }, + { + "type": "Microsoft.EventHub/namespaces/eventhubs/consumergroups", + "apiVersion": "2017-04-01", + "name": "[concat(parameters('namespaces_sdkpseventhubns_name'), '/', parameters('eventhub_name'), '/$Default')]", + "location": "East US", + "dependsOn": [ + "[resourceId('Microsoft.EventHub/namespaces/eventhubs', parameters('namespaces_sdkpseventhubns_name'), parameters('eventhub_name'))]", + "[resourceId('Microsoft.EventHub/namespaces', parameters('namespaces_sdkpseventhubns_name'))]" + ], + "properties": {} + } + ] +} \ No newline at end of file diff --git a/src/Kusto/test/deployment-templates/storage-account/parameters.json b/src/Kusto/test/deployment-templates/storage-account/parameters.json new file mode 100644 index 000000000000..ab594f4a6abb --- /dev/null +++ b/src/Kusto/test/deployment-templates/storage-account/parameters.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "storageAccounts_sdkpsstorage_name": { + "value": "storagelbfexs" + } + } +} diff --git a/src/Kusto/test/deployment-templates/storage-account/template.json b/src/Kusto/test/deployment-templates/storage-account/template.json new file mode 100644 index 000000000000..d7befb5b21ec --- /dev/null +++ b/src/Kusto/test/deployment-templates/storage-account/template.json @@ -0,0 +1,84 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "storageAccounts_sdkpsstorage_name": { + "defaultValue": "sdkpsstorage", + "type": "String" + } + }, + "variables": {}, + "resources": [ + { + "type": "Microsoft.Storage/storageAccounts", + "apiVersion": "2019-06-01", + "name": "[parameters('storageAccounts_sdkpsstorage_name')]", + "location": "eastus", + "sku": { + "name": "Standard_RAGRS", + "tier": "Standard" + }, + "kind": "StorageV2", + "properties": { + "networkAcls": { + "bypass": "AzureServices", + "virtualNetworkRules": [], + "ipRules": [], + "defaultAction": "Allow" + }, + "supportsHttpsTrafficOnly": true, + "encryption": { + "services": { + "file": { + "keyType": "Account", + "enabled": true + }, + "blob": { + "keyType": "Account", + "enabled": true + } + }, + "keySource": "Microsoft.Storage" + }, + "accessTier": "Hot" + } + }, + { + "type": "Microsoft.Storage/storageAccounts/blobServices", + "apiVersion": "2019-06-01", + "name": "[concat(parameters('storageAccounts_sdkpsstorage_name'), '/default')]", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_sdkpsstorage_name'))]" + ], + "sku": { + "name": "Standard_RAGRS", + "tier": "Standard" + }, + "properties": { + "cors": { + "corsRules": [] + }, + "deleteRetentionPolicy": { + "enabled": false + } + } + }, + { + "type": "Microsoft.Storage/storageAccounts/fileServices", + "apiVersion": "2019-06-01", + "name": "[concat(parameters('storageAccounts_sdkpsstorage_name'), '/default')]", + "dependsOn": [ + "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccounts_sdkpsstorage_name'))]" + ], + "sku": { + "name": "Standard_RAGRS", + "tier": "Standard" + }, + "properties": { + "cors": { + "corsRules": [] + } + } + } + ] +} \ No newline at end of file diff --git a/src/Kusto/test/env.json b/src/Kusto/test/env.json index 41635bf14fc6..2df07361ca6c 100644 --- a/src/Kusto/test/env.json +++ b/src/Kusto/test/env.json @@ -1,39 +1,42 @@ { + "eventhubName": "eventhublbfexs", + "iothubName": "iothublbfexs", + "rstr5": "r4qwo8", + "eventhubNameForEventGrid": "eventgridbgiwc7", + "principalType": "App", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf", - "location" : "East US", - "resourceGroupName" : "sdkpowershellrg", - "clusterName" : "sdkpsclustereu", - "databaseName": "sdkpowershelldb", - "skuTier" : "Standard", - "skuName" : "Standard_D11_v2", - "updatedSkuName" : "Standard_D12_v2", - "resourceType" : "Microsoft.Kusto/Clusters", + "langExt1": "R", + "skuName": "Standard_D11_v2", + "PlainClusterName": "testclusterv76dg4", + "principalAssignmentName": "KustoClientsScenarioTest", + "location": "East US", + "principalId": "713c3475-5021-4f3b-a650-eaa9a83f25a4", + "resourceType": "Microsoft.Kusto/Clusters", + "skuTier": "Standard", + "capacity": 2, + "databasePrincipalAssignmentResourceType": "Microsoft.Kusto/Clusters/Databases/principalAssignments", "databaseType": "Microsoft.Kusto/Clusters/Databases", - "capacity" : 2, - "principalAssignmentName": "principalassignment1", - "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", - "databasePrincipalAssignmentResourceType": "Microsoft.Kusto/Clusters/Database/principalAssignments", - "principalId": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0", - "principalType": "App", + "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", - "dataConnectionName": "sdkpsdataconnection", + "principalId1": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0", + "langExt2": "PYTHON", "dataConnectionResourceType": "Microsoft.Kusto/Clusters/Databases/dataConnections", - "eventhubNSName": "sdkpseventhubns", - "eventhubName": "sdkpseventhub", - "tableName": "Events", - "tableMappingName": "EventsMapping", - "tableMappingNameForUpdate": "EventsMapping1", - "dataFormat": "JSON", - "attachedDatabaseConfigurationName": "sdkpowershellfconfig", - "followerClusterName": "sdkpsclustereuf", - "defaultPrincipalsModificationKind": "Union", - "storageName": "sdkpsstorage", - "eventhubNSNameForEventGrid": "sdkpseventhubnsg", - "eventhubNameForEventGrid": "sdkpseventhubg", - "iothubName": "sdkpsiothub", - "iothubSharedAccessPolicyName": "iothubforread", - "langExt1": "R", - "langExt2": "PYTHON" -} \ No newline at end of file + "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 8876c288462c..10db47aa0445 100644 --- a/src/Kusto/test/utils.ps1 +++ b/src/Kusto/test/utils.ps1 @@ -12,13 +12,127 @@ function setupEnv() { $env.SubscriptionId = (Get-AzContext).Subscription.Id $env.Tenant = (Get-AzContext).Tenant.Id # For any resources you created for test, you should add it to $env here. + # Generate some random strings for use in the test. + $rstr1 = RandomString -allChars $false -len 6 + $rstr2 = RandomString -allChars $false -len 6 + $rstr3 = RandomString -allChars $false -len 6 + # Follow random strings will be used in the test directly, so add it to $env + $rstr4 = RandomString -allChars $false -len 6 + $rstr5 = RandomString -allChars $false -len 6 + $rstr6 = RandomString -allChars $false -len 6 + $null = $env.Add("rstr4", $rstr4) + $null = $env.Add("rstr5", $rstr5) + $null = $env.Add("rstr6", $rstr6) + + # Some constants + $constants = Get-Content .\test\constants.json | ConvertFrom-Json + $constants.psobject.Properties | ForEach-Object { $env[$_.Name] = $_.Value } + + # Create the test group + $resourceGroupName = "testgroup" + $rstr1 + Write-Host "Start to create test resource group" $resourceGroupName + $null = $env.Add("resourceGroupName", $resourceGroupName) + New-AzResourceGroup -Name $resourceGroupName -Location $env.location + + # Create Event Hub + $eventhubNSName = "eventhubns" + $rstr1 + $eventhubName = "eventhub" + $rstr1 + Write-Host "Start to create Event Hub NS" $eventhubNSName + $null = $env.Add("eventhubNSName", $eventhubNSName) + $null = $env.Add("eventhubName", $eventhubName) + $eventhubNSParams = Get-Content .\test\deployment-templates\event-hub\parameters.json | ConvertFrom-Json + $eventhubNSParams.parameters.namespaces_sdkpseventhubns_name.value = $eventhubNSName + $eventhubNSParams.parameters.eventhub_name.value = $eventhubName + set-content -Path .\test\deployment-templates\event-hub\parameters.json -Value (ConvertTo-Json $eventhubNSParams) + New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\event-hub\template.json -TemplateParameterFile .\test\deployment-templates\event-hub\parameters.json -Name eventhub -ResourceGroupName $resourceGroupName + + # Create Event Grid + $eventhubNSGName = "eventhubnsgrid" + $rstr2 + $eventhubGName = "eventgrid" + $rstr2 + Write-Host "Start to create Event Grid NS" $eventhubNSGName + $null = $env.Add("eventhubNSNameForEventGrid", $eventhubNSGName) + $null = $env.Add("eventhubNameForEventGrid", $eventhubGName) + $eventhubNSGParams = Get-Content .\test\deployment-templates\event-grid\parameters.json | ConvertFrom-Json + $eventhubNSGParams.parameters.namespaces_sdkpseventhubnsg_name.value = $eventhubNSGName + $eventhubNSGParams.parameters.eventhubg_name.value = $eventhubGName + set-content -Path .\test\deployment-templates\event-grid\parameters.json -Value (ConvertTo-Json $eventhubNSGParams) + New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\event-grid\template.json -TemplateParameterFile .\test\deployment-templates\event-grid\parameters.json -Name eventgrid -ResourceGroupName $resourceGroupName + + # IoT Hub must be created manually, the name is saved in env.json under iothubName + # Create IoT Hub + $iothubName = "iothub" + $rstr1 + Write-Host "Start to create IoT Hub" $iothubName + $null = $env.Add("iothubName", $iothubName) + # New-AzIotHub -ResourceGroupName $resourceGroupName -Name $iothubName -SkuName S1 -Units 1 -Location $env.location + + # Create Storage Account + $storageName = "storage" + $rstr1 + Write-Host "Start to create Storage Account" $storageName + $null = $env.Add("storageName", $storageName) + $storageParams = Get-Content .\test\deployment-templates\storage-account\parameters.json | ConvertFrom-Json + $storageParams.parameters.storageAccounts_sdkpsstorage_name.value = $storageName + set-content -Path .\test\deployment-templates\storage-account\parameters.json -Value (ConvertTo-Json $storageParams) + New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\storage-account\template.json -TemplateParameterFile .\test\deployment-templates\storage-account\parameters.json -Name storage -ResourceGroupName $resourceGroupName + + # Deploy cluster + database + dataconnections for test + $SubscriptionId = $env.SubscriptionId + $clusterName = "testcluster" + $rstr1 + $databaseName = "testdatabase" + $rstr1 + $dataConnectionName = "testdataconnection" + $rstr1 + Write-Host "Start to create a cluster" $clusterName + $null = $env.Add("clusterName", $clusterName) + $null = $env.Add("databaseName", $databaseName) + $null = $env.Add("databaseName1", $databaseName1) + $null = $env.Add("dataConnectionName", $dataConnectionName) + New-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName -Location $env.location -SkuName $env.skuName -SkuTier $env.skuTier + Write-Host "Start to create a database" $databaseName + $softDeletePeriodInDaysUpdated = New-TimeSpan -Days 4 + $hotCachePeriodInDaysUpdated = New-TimeSpan -Days 2 + New-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName -Kind ReadWrite -Location $env.location -SoftDeletePeriod $softDeletePeriodInDaysUpdated -HotCachePeriod $hotCachePeriodInDaysUpdated + + # Note, for *Principal* tests, AzADApplication was created, see principalAssignmentName, principalId and principalAssignmentName1, principalId1 for details + 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 + "g" + $eventHubResourceId = "/subscriptions/$SubscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNSGName/eventhubs/$eventhubGName" + $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageName" + New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $env.location -Kind "EventGrid" -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' + + $dataConnectionName = $env.dataConnectionName + "h" + $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" + New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $env.location -Kind "IotHub" -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $env.iothubSharedAccessPolicyName -ConsumerGroup '$Default' + + # Deploy follower cluster for test + $followerClusterName = "testfcluster" + $rstr2 + $attachedDatabaseConfigurationName = "testdbconf" + $rstr2 + Write-Host "Start to create a follower cluster" $followerClusterName + $null = $env.Add("followerClusterName", $followerClusterName) + $null = $env.Add("attachedDatabaseConfigurationName", $attachedDatabaseConfigurationName) + New-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $followerClusterName -Location $env.location -SkuName $env.skuName -SkuTier $env.skuTier + $clusterResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Kusto/Clusters/$clusterName" + New-AzKustoAttachedDatabaseConfiguration -ResourceGroupName $resourceGroupName -ClusterName $followerClusterName -Name $attachedDatabaseConfigurationName -Location $env.location -ClusterResourceId $clusterResourceId -DatabaseName $databaseName -DefaultPrincipalsModificationKind $env.defaultPrincipalsModificationKind + + # Deploy 2nd cluster for test + $clusterName = "testcluster" + $rstr3 + Write-Host "Start to create 2nd cluster" $clusterName + $null = $env.Add("PlainClusterName", $clusterName) + New-AzKustoCluster -ResourceGroupName $resourceGroupName -Name $clusterName -Location $env.location -SkuName $env.skuName -SkuTier $env.skuTier + $envFile = 'env.json' if ($TestMode -eq 'live') { $envFile = 'localEnv.json' } set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) } + function cleanupEnv() { # Clean resources you create for testing + # Removing resourcegroup will clean all the resources created for testing. + Remove-AzResourceGroup -Name $env.resourceGroupName } - diff --git a/src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs b/src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs index 0809ea89b6b9..66c8c2a19e93 100644 --- a/src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs +++ b/src/Monitor/Monitor.Test/Alerts/AddAzureRmMetricAlertRuleV2Tests.cs @@ -106,6 +106,36 @@ public void NewMetricAlertRuleV2ByTargetResourceScopeAndActionGroupParametersPro It.IsAny()), Times.Once); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewMetricAlertRuleV2ByTargetResourceScopeActionGroupAndActionGroupIdParametersProcessing() + { + _cmdlet.TargetResourceScope = new[] { "resourceId1", "resourceId2" }; + _cmdlet.ActionGroup = new[] { + new ActivityLogAlertActionGroup("actionGroupId1", new Dictionary {{"key1", "value1"}}), + new ActivityLogAlertActionGroup("actionGroupId2", null) + }; + + _cmdlet.ActionGroupId = new[] { "actionGroupId1", "actionGroupId3" }; + + _cmdlet.ExecuteCmdlet(); + + Func verify = metricAlert => + { + Assert.Contains(_cmdlet.ActionGroup[0].ActionGroupId, metricAlert.Actions.Select(action => action.ActionGroupId)); + Assert.Contains(_cmdlet.ActionGroup[0].WebhookProperties, metricAlert.Actions.Select(action => action.WebHookProperties)); + Assert.Contains(_cmdlet.ActionGroup[1].ActionGroupId, metricAlert.Actions.Select(action => action.ActionGroupId)); + Assert.Contains(_cmdlet.ActionGroupId[1], metricAlert.Actions.Select(action => action.ActionGroupId)); + Assert.Equal(3, metricAlert.Actions.Count); + Assert.Contains(_cmdlet.TargetResourceScope[0], metricAlert.Scopes); + Assert.Contains(_cmdlet.TargetResourceScope[1], metricAlert.Scopes); + return true; + }; + + this._insightsMetricAlertsOperationsMock.Verify(o => o.CreateOrUpdateWithHttpMessagesAsync(It.IsAny(), It.IsAny(), It.Is(r => verify(r)), It.IsAny>>(), + It.IsAny()), Times.Once); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void NewMetricAlertRuleV2WithWebtestConditionProcessing() diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs index 5115e9de0f02..e5320be26226 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.cs @@ -120,6 +120,13 @@ public void TestAddAzureRmMetricAlertRuleV2WithActionGroupId() TestsController.NewInstance.RunPsTest(_logger, "Test-AddAzureRmMetricAlertRuleV2-ActionGroupId"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDisableAzureRmMetricAlertRuleV2WithActionGroups() + { + TestsController.NewInstance.RunPsTest(_logger, "Test-DisableAzureRmMetricAlertRuleV2WithActionGroups"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestAddAzureRmDynamicMetricAlertRuleV2() diff --git a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 index 2f4bb86b9441..663c69b8e1f0 100644 --- a/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 +++ b/src/Monitor/Monitor.Test/ScenarioTests/AlertsTests.ps1 @@ -391,10 +391,7 @@ function Test-AddAzureRmMetricAlertRuleV2-ActionGroupId $actionGroup1 = New-AzActionGroup -ActionGroupId $NewActionGroup1.Id $condition = New-AzMetricAlertRuleV2Criteria -MetricName "UsedCapacity" -Operator GreaterThan -Threshold 8 -TimeAggregation Average try - { - # Test - cannot create metric alert with action group id and action group - Assert-Throws { Add-AzMetricAlertRuleV2 -Name $ruleName -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceId $targetResourceId -Condition $condition -ActionGroup $actionGroup1 -ActionGroupId $NewActionGroup1.Id, $NewActionGroup1.Id -Severity 3 } "Parameter set cannot be resolved using the specified named parameters. One or more parameters issued cannot be used together or an insufficient number of parameters were provided." - + { # Test - create metric alert by action group id $actual = Add-AzMetricAlertRuleV2 -Name $ruleName -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceId $targetResourceId -Condition $condition -ActionGroupId $NewActionGroup1.Id, $NewActionGroup2.Id -Severity 3 Assert-AreEqual $actual.Name $ruleName @@ -411,6 +408,60 @@ function Test-AddAzureRmMetricAlertRuleV2-ActionGroupId <# .SYNOPSIS +Tests disabling a GenV2 metric alert rule with action groups. +#> +function Test-DisableAzureRmMetricAlertRuleV2WithActionGroups +{ + # Setup + $sub = Get-AzContext + $subscription = $sub.subscription.subscriptionId + $rgname = Get-ResourceGroupName + $location =Get-ProviderLocation ResourceManagement + $resourceName = Get-ResourceName + $ruleWithActionGroupIdName = Get-ResourceName + $ruleByResourceId = Get-ResourceName + $ruleByResourceScope = Get-ResourceName + $actionGroupName1 = Get-ResourceName + $actionGroupName2 = Get-ResourceName + $targetResourceId = '/subscriptions/'+$subscription+'/resourceGroups/'+$rgname+'/providers/Microsoft.Storage/storageAccounts/'+$resourceName + $targetResourceScope = $targetResourceId + $targetResourceType = 'Microsoft.Storage/storageAccounts' + New-AzResourceGroup -Name $rgname -Location $location -Force + New-AzStorageAccount -ResourceGroupName $rgname -Name $resourceName -Location $location -Type Standard_GRS + $email = New-AzActionGroupReceiver -Name 'user1' -EmailReceiver -EmailAddress 'user1@example.com' + $newActionGroup1 = Set-AzureRmActionGroup -Name $actionGroupName1 -ResourceGroup $rgname -ShortName ASTG -Receiver $email + $newActionGroup2 = Set-AzureRmActionGroup -Name $actionGroupName2 -ResourceGroup $rgname -ShortName ASTG -Receiver $email + $condition = New-AzMetricAlertRuleV2Criteria -MetricName "UsedCapacity" -Operator GreaterThan -Threshold 8 -TimeAggregation Average + try + { + # Test - disable metric alert with resource id and action group + $actual = Add-AzMetricAlertRuleV2 -Name $ruleByResourceId -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceId $targetResourceId -Condition $condition -Severity 3 -ActionGroupId $newActionGroup1.Id, $newActionGroup2.Id + $actual = Get-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleByResourceId | Add-AzMetricAlertRuleV2 -DisableRule + Assert-AreEqual $actual.Name $ruleByResourceId + Assert-AreEqual $actual.Actions[0].ActionGroupId $NewActionGroup1.Id + Assert-AreEqual $actual.Actions[1].ActionGroupId $NewActionGroup2.Id + + # Test - disable metric alert with scope and action group + $actual = Add-AzMetricAlertRuleV2 -Name $ruleByResourceScope -ResourceGroupName $rgname -WindowSize 01:00:00 -Frequency 00:05:00 -TargetResourceScope $targetResourceScope -TargetResourceType $targetResourceType -TargetResourceRegion $location -Condition $condition -Severity 3 -ActionGroupId $newActionGroup1.Id, $newActionGroup2.Id + $actual = Get-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleByResourceScope | Add-AzMetricAlertRuleV2 -DisableRule + Assert-AreEqual $actual.Name $ruleByResourceScope + Assert-AreEqual $actual.Actions[0].ActionGroupId $NewActionGroup1.Id + Assert-AreEqual $actual.Actions[1].ActionGroupId $NewActionGroup2.Id + } + finally + { + # Cleanup + Remove-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleByResourceId + Remove-AzMetricAlertRuleV2 -ResourceGroupName $rgname -Name $ruleByResourceScope + Remove-AzActionGroup -ResourceGroupName $rgname -Name $actionGroupName1 + Remove-AzActionGroup -ResourceGroupName $rgname -Name $actionGroupName2 + Remove-AzureRmStorageAccount -ResourceGroupName $rgName -Name $resourceName + Remove-AzResourceGroup -Name $rgname -Force + } +} + + <# +.SYNOPSIS Tests adding a GenV2 dyanmic metric alert rule. #> function Test-AddAzureRmMetricAlertRuleV2-DynamicThreshold diff --git a/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json index aa06610085b9..1d45209f6b78 100644 --- a/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json +++ b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestAddAzureRmMetricAlertRuleV2WithActionGroupId.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps1722?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzMTcyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps9344?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzOTM0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12351748-f5b4-4a45-acef-9b1f1f48b17d" + "132e4dab-4958-49d8-afdc-986e0ae433da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "17ae832f-797d-471f-b7de-c3ee2da27f43" + "033a428c-f712-47b7-b05c-8a90308d2340" ], "x-ms-correlation-request-id": [ - "17ae832f-797d-471f-b7de-c3ee2da27f43" + "033a428c-f712-47b7-b05c-8a90308d2340" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154720Z:17ae832f-797d-471f-b7de-c3ee2da27f43" + "NORTHEUROPE:20200809T141959Z:033a428c-f712-47b7-b05c-8a90308d2340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:20 GMT" + "Sun, 09 Aug 2020 14:19:59 GMT" ], "Content-Length": [ "165" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722\",\r\n \"name\": \"ps1722\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344\",\r\n \"name\": \"ps9344\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNzk2OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Storage/storageAccounts/ps4215?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNDIxNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d34611d0-1b02-4610-b233-cd3f7d1ddb23" + "838760c9-dcd3-4220-bfe7-8cd74be1c079" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/faab6ad2-7dc4-4cb9-93e7-58a7cd06a740?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/11d72829-efcc-4035-8a5f-928465422344?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "faab6ad2-7dc4-4cb9-93e7-58a7cd06a740" + "11d72829-efcc-4035-8a5f-928465422344" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "367e8644-4b9a-44fa-bb02-ff97592f7960" + "53fdba94-96d9-44d7-860a-8e2507b78b6a" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154726Z:367e8644-4b9a-44fa-bb02-ff97592f7960" + "NORTHEUROPE:20200809T142005Z:53fdba94-96d9-44d7-860a-8e2507b78b6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:25 GMT" + "Sun, 09 Aug 2020 14:20:05 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,16 +142,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/faab6ad2-7dc4-4cb9-93e7-58a7cd06a740?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9mYWFiNmFkMi03ZGM0LTRjYjktOTNlNy01OGE3Y2QwNmE3NDA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/11d72829-efcc-4035-8a5f-928465422344?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8xMWQ3MjgyOS1lZmNjLTQwMzUtOGE1Zi05Mjg0NjU0MjIzNDQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "no-cache" ], "x-ms-request-id": [ - "72d2292e-3eb9-4075-8a73-9aeac2840e51" + "f4f1be68-f0a9-423c-927d-4a70740295e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,16 +174,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "93be39f1-e3ae-408c-bbab-7a1bd536497e" + "f946cdf2-b688-4772-9bb1-1abe8b10b63c" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154743Z:93be39f1-e3ae-408c-bbab-7a1bd536497e" + "NORTHEUROPE:20200809T142022Z:f946cdf2-b688-4772-9bb1-1abe8b10b63c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:43 GMT" + "Sun, 09 Aug 2020 14:20:22 GMT" ], "Content-Length": [ "1074" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969\",\r\n \"name\": \"ps7969\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-04T15:47:25.5743844Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-04T15:47:25.5743844Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-04T15:47:25.5118825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps7969.blob.core.windows.net/\",\r\n \"queue\": \"https://ps7969.queue.core.windows.net/\",\r\n \"table\": \"https://ps7969.table.core.windows.net/\",\r\n \"file\": \"https://ps7969.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Storage/storageAccounts/ps4215\",\r\n \"name\": \"ps4215\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-09T14:20:04.7395222Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-09T14:20:04.7395222Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-09T14:20:04.6613749Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps4215.blob.core.windows.net/\",\r\n \"queue\": \"https://ps4215.queue.core.windows.net/\",\r\n \"table\": \"https://ps4215.table.core.windows.net/\",\r\n \"file\": \"https://ps4215.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczQ0MjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/microsoft.insights/actionGroups/ps5211?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTM0NC9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczUyMTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dad0dd17-19da-42c0-bc92-7009b3b5e482" + "c76e5abe-2c64-488a-b831-03cd2865169c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -234,7 +234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c53bf024-7c95-4094-b579-2f320f22308d" + "ba988f33-0174-407f-b8c8-ab255301d35a" ], "Server": [ "Microsoft-IIS/10.0" @@ -243,16 +243,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "d13fd078-cc58-4ff3-afb0-e3815190a3d8" + "68eac1a0-cdb4-4adb-b05b-06e23790669c" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154749Z:d13fd078-cc58-4ff3-afb0-e3815190a3d8" + "NORTHEUROPE:20200809T142029Z:68eac1a0-cdb4-4adb-b05b-06e23790669c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:49 GMT" + "Sun, 09 Aug 2020 14:20:29 GMT" ], "Content-Length": [ "632" @@ -264,26 +264,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps4420\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/microsoft.insights/actionGroups/ps5211\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps5211\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczQ0MjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/microsoft.insights/actionGroups/ps5211?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTM0NC9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczUyMTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c47d7448-5028-48c2-af06-453aa9b162c2" + "6e4d57f2-706a-4b4e-923e-5d655521d9b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,7 +303,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8c884d2-496c-40bd-9586-40826e1e3aeb" + "3dcfec95-7ca0-44f6-ba44-4b3369c9be8b" ], "Server": [ "Microsoft-IIS/10.0" @@ -312,16 +312,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "13a9f552-2f8b-48f9-811b-ade7f5c3790b" + "6cb6c143-9440-4541-b455-e12ce9e61c64" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154750Z:13a9f552-2f8b-48f9-811b-ade7f5c3790b" + "NORTHEUROPE:20200809T142030Z:6cb6c143-9440-4541-b455-e12ce9e61c64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:49 GMT" + "Sun, 09 Aug 2020 14:20:30 GMT" ], "Content-Length": [ "632" @@ -333,32 +333,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps4420\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/microsoft.insights/actionGroups/ps5211\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps5211\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Insights/metricAlerts/ps5417?api-version=2018-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczU0MTc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Insights/metricAlerts/ps7849?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTM0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczc4NDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Storage/storageAccounts/ps4215\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/microsoft.insights/actionGroups/ps5211\"\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fdb209ea-cf09-4655-85e8-c3f5b8a42830" + "96a9367a-52a1-4294-bd3f-eb755716a0d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1169" + "999" ] }, "ResponseHeaders": { @@ -369,10 +369,11 @@ "no-cache" ], "x-ms-request-id": [ - "b94a5d0f-209f-461f-9d57-671dfa02457f" + "047e7f5c-2577-4909-8342-e40811294cbc", + "047e7f5c-2577-4909-8342-e40811294cbc" ], "api-supported-versions": [ - "2017-09-01-preview, 2018-03-01" + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" ], "Server": [ "Microsoft-IIS/10.0" @@ -387,10 +388,10 @@ "299" ], "x-ms-correlation-request-id": [ - "b94a5d0f-209f-461f-9d57-671dfa02457f" + "047e7f5c-2577-4909-8342-e40811294cbc" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154754Z:b94a5d0f-209f-461f-9d57-671dfa02457f" + "NORTHEUROPE:20200809T142035Z:047e7f5c-2577-4909-8342-e40811294cbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -399,10 +400,10 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:54 GMT" + "Sun, 09 Aug 2020 14:20:35 GMT" ], "Content-Length": [ - "1526" + "1356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -411,26 +412,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps5417\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Insights/metricAlerts/ps5417\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 1.5.0\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps7849\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Insights/metricAlerts/ps7849\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Storage/storageAccounts/ps4215\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/microsoft.insights/actionGroups/ps5211\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Insights/metricAlerts/ps5417?api-version=2018-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczU0MTc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Insights/metricAlerts/ps7849?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTM0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczc4NDk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b2429ab-e9b0-4e66-882d-c19375ea596c" + "5f8de348-90ce-4280-845d-a48f7f8857fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" ] }, "ResponseHeaders": { @@ -441,10 +442,11 @@ "no-cache" ], "x-ms-request-id": [ - "fb243557-eaf5-4e88-9fb0-43997f9ce93b" + "031152f0-0205-4b04-8e77-b9a96f47a648", + "031152f0-0205-4b04-8e77-b9a96f47a648" ], "api-supported-versions": [ - "2017-09-01-preview, 2018-03-01" + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" ], "Server": [ "Microsoft-IIS/10.0" @@ -459,10 +461,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "fb243557-eaf5-4e88-9fb0-43997f9ce93b" + "031152f0-0205-4b04-8e77-b9a96f47a648" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154757Z:fb243557-eaf5-4e88-9fb0-43997f9ce93b" + "NORTHEUROPE:20200809T142038Z:031152f0-0205-4b04-8e77-b9a96f47a648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,7 +473,7 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:57 GMT" + "Sun, 09 Aug 2020 14:20:38 GMT" ], "Expires": [ "-1" @@ -484,22 +486,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/microsoft.insights/actionGroups/ps4420?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczQ0MjA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/microsoft.insights/actionGroups/ps5211?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTM0NC9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczUyMTE/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35286a10-1d79-43f5-86c5-88328ceea150" + "c3447230-7fea-43df-a475-80feb4cece66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.24.1.0" + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" ] }, "ResponseHeaders": { @@ -513,7 +515,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78f2f084-f4e9-480e-8182-b44655c52beb" + "67e09f36-4fb3-4f60-88c5-4630b300f81a" ], "Server": [ "Microsoft-IIS/10.0" @@ -522,16 +524,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "f5e97ca0-8d01-4814-8b39-0c52c0f76189" + "7aed7a8e-04db-4325-a1ad-54a1948a09dc" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154759Z:f5e97ca0-8d01-4814-8b39-0c52c0f76189" + "NORTHEUROPE:20200809T142040Z:7aed7a8e-04db-4325-a1ad-54a1948a09dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:47:59 GMT" + "Sun, 09 Aug 2020 14:20:40 GMT" ], "Expires": [ "-1" @@ -544,22 +546,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps1722/providers/Microsoft.Storage/storageAccounts/ps7969?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzMTcyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNzk2OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9344/providers/Microsoft.Storage/storageAccounts/ps4215?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTM0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNDIxNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eced379-a059-460b-88ab-e6f51a3ec14e" + "2a6fb55c-30bc-45d8-9ac9-3476437d5f1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.5" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -570,28 +572,28 @@ "no-cache" ], "x-ms-request-id": [ - "b280f0a9-e2e3-48f4-aabd-838fa654e7c0" + "08a13728-fbfe-4b5a-9899-5818038e4694" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], "x-ms-correlation-request-id": [ - "f9b49682-bd13-4c28-b8b9-7d6a7dc50d9f" + "cd73cd2c-3e7c-4127-881f-f439b8223db4" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154802Z:f9b49682-bd13-4c28-b8b9-7d6a7dc50d9f" + "NORTHEUROPE:20200809T142044Z:cd73cd2c-3e7c-4127-881f-f439b8223db4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:48:01 GMT" + "Sun, 09 Aug 2020 14:20:44 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -607,22 +609,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps1722?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzMTcyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps9344?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzOTM0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18f326df-b81a-45c8-b968-868a2c2d7e87" + "a71cf974-188a-467b-9775-3d8f0e75bf0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -633,79 +635,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "b54feb1e-2246-4b96-8082-9eeef139ca21" - ], - "x-ms-correlation-request-id": [ - "b54feb1e-2246-4b96-8082-9eeef139ca21" - ], - "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154804Z:b54feb1e-2246-4b96-8082-9eeef139ca21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 04 Feb 2020 15:48:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28325.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "14996" ], "x-ms-request-id": [ - "575442b8-8a34-41b5-afa3-fe4ba6aa26f9" + "cfc81363-dad6-4da4-9d67-5bbad675e4a8" ], "x-ms-correlation-request-id": [ - "575442b8-8a34-41b5-afa3-fe4ba6aa26f9" + "cfc81363-dad6-4da4-9d67-5bbad675e4a8" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154820Z:575442b8-8a34-41b5-afa3-fe4ba6aa26f9" + "NORTHEUROPE:20200809T142046Z:cfc81363-dad6-4da4-9d67-5bbad675e4a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,7 +659,7 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:48:20 GMT" + "Sun, 09 Aug 2020 14:20:46 GMT" ], "Expires": [ "-1" @@ -727,16 +672,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -747,22 +692,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "cfa169a5-f052-4cbf-919c-77cc9b9d6737" + "6a946673-5381-45e9-a2b0-5bf7402222c4" ], "x-ms-correlation-request-id": [ - "cfa169a5-f052-4cbf-919c-77cc9b9d6737" + "6a946673-5381-45e9-a2b0-5bf7402222c4" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154835Z:cfa169a5-f052-4cbf-919c-77cc9b9d6737" + "NORTHEUROPE:20200809T142102Z:6a946673-5381-45e9-a2b0-5bf7402222c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,7 +716,7 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:48:35 GMT" + "Sun, 09 Aug 2020 14:21:01 GMT" ], "Expires": [ "-1" @@ -784,16 +729,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -804,22 +749,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "849b8562-f0ec-421f-a85d-c597459bb9da" + "082f8bc5-22b1-4935-9127-c767d3ca8a22" ], "x-ms-correlation-request-id": [ - "849b8562-f0ec-421f-a85d-c597459bb9da" + "082f8bc5-22b1-4935-9127-c767d3ca8a22" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154850Z:849b8562-f0ec-421f-a85d-c597459bb9da" + "NORTHEUROPE:20200809T142117Z:082f8bc5-22b1-4935-9127-c767d3ca8a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,7 +773,7 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:48:50 GMT" + "Sun, 09 Aug 2020 14:21:16 GMT" ], "Expires": [ "-1" @@ -841,16 +786,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -861,16 +806,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "111d016e-ee30-4a21-9ef3-32cf8c03476a" + "91710820-1e6b-4dab-8789-795bb644f190" ], "x-ms-correlation-request-id": [ - "111d016e-ee30-4a21-9ef3-32cf8c03476a" + "91710820-1e6b-4dab-8789-795bb644f190" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154906Z:111d016e-ee30-4a21-9ef3-32cf8c03476a" + "NORTHEUROPE:20200809T142132Z:91710820-1e6b-4dab-8789-795bb644f190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,7 +824,7 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:49:05 GMT" + "Sun, 09 Aug 2020 14:21:32 GMT" ], "Expires": [ "-1" @@ -892,16 +837,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3MjItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM01qSXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28325.01", + "FxVersion/4.6.29017.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" ] }, "ResponseHeaders": { @@ -912,16 +857,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "1667a77f-63ec-43d6-86e5-3be73079b898" + "c9acd6db-915c-49a6-8a54-1c1df3b21c7b" ], "x-ms-correlation-request-id": [ - "1667a77f-63ec-43d6-86e5-3be73079b898" + "c9acd6db-915c-49a6-8a54-1c1df3b21c7b" ], "x-ms-routing-request-id": [ - "UKSOUTH2:20200204T154906Z:1667a77f-63ec-43d6-86e5-3be73079b898" + "NORTHEUROPE:20200809T142133Z:c9acd6db-915c-49a6-8a54-1c1df3b21c7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,7 +875,7 @@ "nosniff" ], "Date": [ - "Tue, 04 Feb 2020 15:49:06 GMT" + "Sun, 09 Aug 2020 14:21:33 GMT" ], "Expires": [ "-1" @@ -945,10 +890,10 @@ ], "Names": { "Test-AddAzureRmMetricAlertRuleV2-ActionGroupId": [ - "ps1722", - "ps7969", - "ps5417", - "ps4420" + "ps9344", + "ps4215", + "ps7849", + "ps5211" ] }, "Variables": { diff --git a/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestDisableAzureRmMetricAlertRuleV2WithActionGroups.json b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestDisableAzureRmMetricAlertRuleV2WithActionGroups.json new file mode 100644 index 000000000000..6f2018900bf1 --- /dev/null +++ b/src/Monitor/Monitor.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests/TestDisableAzureRmMetricAlertRuleV2WithActionGroups.json @@ -0,0 +1,1418 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps9298?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzOTI5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85ac3e9a-5342-4378-9979-0a5313631be0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "cd6b036f-efd2-4986-833c-bc11bcbbf41b" + ], + "x-ms-correlation-request-id": [ + "cd6b036f-efd2-4986-833c-bc11bcbbf41b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141345Z:cd6b036f-efd2-4986-833c-bc11bcbbf41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:13:45 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298\",\r\n \"name\": \"ps9298\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNTY2Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1262b17e-7656-4045-afd9-2531e3816277" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/160eb2ae-6a57-4431-a6db-610d3a28c286?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "160eb2ae-6a57-4431-a6db-610d3a28c286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "971ce1c7-3bec-4870-8763-80ccede4fbee" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141352Z:971ce1c7-3bec-4870-8763-80ccede4fbee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:13:51 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/providers/Microsoft.Storage/locations/westus/asyncoperations/160eb2ae-6a57-4431-a6db-610d3a28c286?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8xNjBlYjJhZS02YTU3LTQ0MzEtYTZkYi02MTBkM2EyOGMyODY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "54d582db-a979-439f-aaea-1b5416530b79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "cea51cf5-957d-415a-9007-2b1905ee7868" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141409Z:cea51cf5-957d-415a-9007-2b1905ee7868" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:09 GMT" + ], + "Content-Length": [ + "1074" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\",\r\n \"name\": \"ps5666\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-09T14:13:51.7983021Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-09T14:13:51.7983021Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-09T14:13:51.7357289Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps5666.blob.core.windows.net/\",\r\n \"queue\": \"https://ps5666.queue.core.windows.net/\",\r\n \"table\": \"https://ps5666.table.core.windows.net/\",\r\n \"file\": \"https://ps5666.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczk1Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7ef0620-09cb-4c69-9cdd-74124e4c1532" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "541" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9e286917-3d01-472f-9cee-82eb9151f8e2" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "444bdb7d-e62e-4c83-a43c-9ea69d5b7d7e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141416Z:444bdb7d-e62e-4c83-a43c-9ea69d5b7d7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:15 GMT" + ], + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps957\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczgwODI/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"location\": \"Global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3395af39-871d-4e6b-9619-85c1917518f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "541" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a8194650-b812-4a98-bdda-b4b51de34e65" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d3034f85-de97-48d6-b36f-93f0ba0ed64d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141419Z:d3034f85-de97-48d6-b36f-93f0ba0ed64d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:18 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\",\r\n \"type\": \"Microsoft.Insights/ActionGroups\",\r\n \"name\": \"ps8082\",\r\n \"location\": \"Global\",\r\n \"kind\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"groupShortName\": \"ASTG\",\r\n \"enabled\": true,\r\n \"emailReceivers\": [\r\n {\r\n \"name\": \"user1\",\r\n \"emailAddress\": \"user1@example.com\",\r\n \"status\": \"Enabled\",\r\n \"useCommonAlertSchema\": false\r\n }\r\n ],\r\n \"smsReceivers\": [],\r\n \"webhookReceivers\": [],\r\n \"itsmReceivers\": [],\r\n \"azureAppPushReceivers\": [],\r\n \"automationRunbookReceivers\": [],\r\n \"voiceReceivers\": [],\r\n \"logicAppReceivers\": [],\r\n \"azureFunctionReceivers\": [],\r\n \"armRoleReceivers\": []\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps6677?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczY2Nzc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15c06b60-4d23-422e-a70d-98e9529817e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1168" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fb043d3-00e3-4404-8db8-960881246d10", + "8fb043d3-00e3-4404-8db8-960881246d10" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "299" + ], + "x-ms-correlation-request-id": [ + "8fb043d3-00e3-4404-8db8-960881246d10" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141426Z:8fb043d3-00e3-4404-8db8-960881246d10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:25 GMT" + ], + "Content-Length": [ + "1525" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps6677\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps6677\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps6677?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczY2Nzc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": false,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56aeabc0-c0ba-48f9-bc33-11086160fab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1236" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "678df3da-1b43-438c-99a6-5fe3e5704d08", + "678df3da-1b43-438c-99a6-5fe3e5704d08" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "298" + ], + "x-ms-correlation-request-id": [ + "678df3da-1b43-438c-99a6-5fe3e5704d08" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141428Z:678df3da-1b43-438c-99a6-5fe3e5704d08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:27 GMT" + ], + "Content-Length": [ + "1526" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps6677\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps6677\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": false,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 0,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps6677?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczY2Nzc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cea2636-58e3-4233-aa6d-3dfc385e8528" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b419af93-b7a8-4551-ad3d-3853dd5e91e4", + "b419af93-b7a8-4551-ad3d-3853dd5e91e4" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b419af93-b7a8-4551-ad3d-3853dd5e91e4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141426Z:b419af93-b7a8-4551-ad3d-3853dd5e91e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:25 GMT" + ], + "Content-Length": [ + "1525" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps6677\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps6677\",\r\n \"properties\": {\r\n \"description\": \"This new Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"microsoft.storage/storageaccounts\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps8459?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczg0NTk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This New multi resource Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"targetResourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"targetResourceRegion\": \"West US\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b864657-a86f-4f3c-a1c5-ae8c322ef1e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04755d1d-bb76-40ef-8eaa-88c4d6352c88", + "04755d1d-bb76-40ef-8eaa-88c4d6352c88" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "297" + ], + "x-ms-correlation-request-id": [ + "04755d1d-bb76-40ef-8eaa-88c4d6352c88" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141432Z:04755d1d-bb76-40ef-8eaa-88c4d6352c88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:32 GMT" + ], + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps8459\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps8459\",\r\n \"properties\": {\r\n \"description\": \"This New multi resource Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"targetResourceRegion\": \"westus\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps8459?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczg0NTk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This New multi resource Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": false,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"targetResourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"targetResourceRegion\": \"westus\",\r\n \"criteria\": {\r\n \"odata.type\": \"Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria\",\r\n \"allOf\": [\r\n {\r\n \"criterionType\": \"StaticThresholdCriterion\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"timeAggregation\": \"Average\"\r\n }\r\n ]\r\n },\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e080ec7-fa67-4a47-accb-a4ddaa4718e0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1356" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "966df3ce-ab36-486f-bf95-d0e537c3bc94", + "966df3ce-ab36-486f-bf95-d0e537c3bc94" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "296" + ], + "x-ms-correlation-request-id": [ + "966df3ce-ab36-486f-bf95-d0e537c3bc94" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141434Z:966df3ce-ab36-486f-bf95-d0e537c3bc94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:34 GMT" + ], + "Content-Length": [ + "1582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps8459\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps8459\",\r\n \"properties\": {\r\n \"description\": \"This New multi resource Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": false,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 0,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"targetResourceRegion\": \"westus\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps8459?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczg0NTk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfbcc7d6-10f1-4010-afeb-b9af93db34df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7bbecafd-a24b-4c7b-81dc-61afdece23b4", + "7bbecafd-a24b-4c7b-81dc-61afdece23b4" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7bbecafd-a24b-4c7b-81dc-61afdece23b4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141433Z:7bbecafd-a24b-4c7b-81dc-61afdece23b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:32 GMT" + ], + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"global\",\r\n \"type\": \"Microsoft.Insights/metricAlerts\",\r\n \"name\": \"ps8459\",\r\n \"id\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps8459\",\r\n \"properties\": {\r\n \"description\": \"This New multi resource Metric alert rule was created from Powershell version: 2.0.2\",\r\n \"severity\": 3,\r\n \"enabled\": true,\r\n \"scopes\": [\r\n \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666\"\r\n ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT1H\",\r\n \"templateType\": 8,\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"threshold\": 8.0,\r\n \"name\": \"metric1\",\r\n \"metricNamespace\": \"microsoft.storage/storageaccounts\",\r\n \"metricName\": \"UsedCapacity\",\r\n \"operator\": \"GreaterThan\",\r\n \"timeAggregation\": \"Average\",\r\n \"criterionType\": \"StaticThresholdCriterion\"\r\n }\r\n ],\r\n \"odata.type\": \"Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria\"\r\n },\r\n \"targetResourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"targetResourceRegion\": \"westus\",\r\n \"actions\": [\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957\"\r\n },\r\n {\r\n \"actionGroupId\": \"/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps6677?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczY2Nzc/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f12f4836-08ce-4a1c-9341-b3e088d0002b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9ac90bcf-a4b6-4709-a9a7-c5322c0c07ce", + "9ac90bcf-a4b6-4709-a9a7-c5322c0c07ce" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "9ac90bcf-a4b6-4709-a9a7-c5322c0c07ce" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141436Z:9ac90bcf-a4b6-4709-a9a7-c5322c0c07ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Insights/metricAlerts/ps8459?api-version=2018-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lkluc2lnaHRzL21ldHJpY0FsZXJ0cy9wczg0NTk/YXBpLXZlcnNpb249MjAxOC0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ecdba59-7ea6-4a7a-950b-87561a0c8bde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6cda5e11-c568-41c2-bfc5-bb0f61dd2c7a", + "6cda5e11-c568-41c2-bfc5-bb0f61dd2c7a" + ], + "api-supported-versions": [ + "1.0, 2.0, 2017-09-01-preview, 2018-03-01" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "6cda5e11-c568-41c2-bfc5-bb0f61dd2c7a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141438Z:6cda5e11-c568-41c2-bfc5-bb0f61dd2c7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps957?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczk1Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "868a1e04-27f1-4e57-85c1-9e4823fcc65c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c33b32d1-4c4a-4e3e-97f4-4138fb90dd8c" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "886ca2d3-c8c6-4e87-9d55-6636e2305a26" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141440Z:886ca2d3-c8c6-4e87-9d55-6636e2305a26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/microsoft.insights/actionGroups/ps8082?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvbWljcm9zb2Z0Lmluc2lnaHRzL2FjdGlvbkdyb3Vwcy9wczgwODI/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "131ac8d0-e444-4b33-963b-fd45170b4b10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Monitor.MonitorManagementClient/0.25.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2328bb55-18ac-4f3d-a126-d1770bdfc09a" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "1b6bda16-bc82-4c6a-9fb7-3c4c751afe28" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141442Z:1b6bda16-bc82-4c6a-9fb7-3c4c751afe28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourceGroups/ps9298/providers/Microsoft.Storage/storageAccounts/ps5666?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlR3JvdXBzL3BzOTI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3BzNTY2Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d7a35c7-a233-4576-8ac6-f15a4504901e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9cae0f63-509b-42e2-99c7-6511a7189034" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "3eab4fb6-4bbc-4993-9416-d06d140f6109" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141446Z:3eab4fb6-4bbc-4993-9416-d06d140f6109" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:45 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/resourcegroups/ps9298?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL3Jlc291cmNlZ3JvdXBzL3BzOTI5OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c010d95-bd88-4fe3-b7e1-e2c987c67690" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14994" + ], + "x-ms-request-id": [ + "fe80b0de-3418-4fa0-a459-5b1976519b38" + ], + "x-ms-correlation-request-id": [ + "fe80b0de-3418-4fa0-a459-5b1976519b38" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141447Z:fe80b0de-3418-4fa0-a459-5b1976519b38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:14:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c273b85d-e1ae-4225-8e61-bd772a794f1c" + ], + "x-ms-correlation-request-id": [ + "c273b85d-e1ae-4225-8e61-bd772a794f1c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141503Z:c273b85d-e1ae-4225-8e61-bd772a794f1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:15:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c8385273-f223-4967-80bd-f1f8dc480eb0" + ], + "x-ms-correlation-request-id": [ + "c8385273-f223-4967-80bd-f1f8dc480eb0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141518Z:c8385273-f223-4967-80bd-f1f8dc480eb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:15:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "3ca65986-2f00-4ff0-b67e-e7d181172181" + ], + "x-ms-correlation-request-id": [ + "3ca65986-2f00-4ff0-b67e-e7d181172181" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141534Z:3ca65986-2f00-4ff0-b67e-e7d181172181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:15:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyOTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFhZWIwZWQtNDU2Yi00Y2EwLThkZjUtYjlmYmRjNjNkMGQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU9UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.20" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "cb974b53-32d9-4097-bae2-1a779ab29835" + ], + "x-ms-correlation-request-id": [ + "cb974b53-32d9-4097-bae2-1a779ab29835" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200809T141534Z:cb974b53-32d9-4097-bae2-1a779ab29835" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 09 Aug 2020 14:15:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-DisableAzureRmMetricAlertRuleV2WithActionGroups": [ + "ps9298", + "ps5666", + "ps3924", + "ps6677", + "ps8459", + "ps957", + "ps8082" + ] + }, + "Variables": { + "SubscriptionId": "11aeb0ed-456b-4ca0-8df5-b9fbdc63d0d3" + } +} \ No newline at end of file diff --git a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs index 365457033f52..7ac74166c099 100644 --- a/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs +++ b/src/Monitor/Monitor/Alerts/AddAzureRmMetricAlertRuleV2Command.cs @@ -31,10 +31,6 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase { const string CreateAlertByResourceId = "CreateAlertByResourceId"; const string CreateAlertByScopes = "CreateAlertByScopes"; - const string CreateAlertByResourceIdAndActionGroup = "CreateAlertByResourceIdAndActionGroup"; - const string CreateAlertByScopesAndActionGroup = "CreateAlertByScopesAndActionGroup"; - const string CreateAlertByResourceIdAndActionGroupId = "CreateAlertByResourceIdAndActionGroupId"; - const string CreateAlertByScopesAndActionGroupId = "CreateAlertByScopesAndActionGroupId"; /// /// Gets or sets Name parameter of the cmdlet @@ -69,8 +65,6 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// Gets or sets the TargetResourceId parameter /// [Parameter(ParameterSetName = CreateAlertByResourceId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] - [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] - [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource id for rule")] [ValidateNotNullOrEmpty] public string TargetResourceId { get; set; } @@ -78,8 +72,6 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// Gets or sets the TargetResourceScope parameter /// [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource scope for rule")] [ValidateNotNullOrEmpty] [Alias("Scopes")] public string[] TargetResourceScope { get; set; } @@ -88,8 +80,6 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// Gets or sets the TargetResourceType parameter /// [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource type for rule")] [ValidateNotNullOrEmpty] public string TargetResourceType { get; set; } @@ -97,8 +87,6 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// Gets or sets the TargetResourceRegion parameter /// [Parameter(ParameterSetName = CreateAlertByScopes, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The target resource region for rule")] [ValidateNotNullOrEmpty] public string TargetResourceRegion { get; set; } @@ -113,16 +101,16 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase /// /// Gets or sets the ActionGroup parameter /// - [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroup, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] + [Parameter(Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] [Alias("Actions")] + [AllowEmptyCollection] public ActivityLogAlertActionGroup[] ActionGroup { get; set; } /// /// Gets or sets the ActionGroupId parameter /// - [Parameter(ParameterSetName = CreateAlertByResourceIdAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] - [Parameter(ParameterSetName = CreateAlertByScopesAndActionGroupId, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group id for rule")] + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The Action Group for rule")] + [AllowEmptyCollection] public string[] ActionGroupId { get; set; } /// @@ -147,14 +135,15 @@ public class AddAzureRmMetricAlertRuleV2Command : ManagementCmdletBase protected override void ProcessRecordInternal() { var actions = new List(); - if (this.ActionGroup != null) + if (this.ActionGroup != null && this.ActionGroup.Length > 0) { actions.AddRange(this.ActionGroup.Select(actionGroup => new MetricAlertAction(actionGroupId: actionGroup.ActionGroupId, webHookProperties: actionGroup.WebhookProperties))); } - if (this.ActionGroupId != null) + if (this.ActionGroupId != null && this.ActionGroupId.Length > 0) { - actions.AddRange(this.ActionGroupId.Select(actionGroupId => new MetricAlertAction(actionGroupId: actionGroupId))); + var newActionGroupIds = this.ActionGroupId.Where(id => ! actions.Exists(action => action.ActionGroupId == id)); + actions.AddRange(newActionGroupIds.Select(actionGroupId => new MetricAlertAction(actionGroupId: actionGroupId))); } if (this.Condition.Any(c => c.CriterionType == CriterionType.DynamicThresholdCriterion)) diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index 8d6672c66465..38007be06828 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -20,6 +20,7 @@ ## Upcoming Release * Extend the parameter set in `Set-AzDiagnosticSetting` for separation of Logs and Metrics enablement [#12482] +* Fixed bug for `Add-AzMetricAlertRuleV2` when getting metric alert from pipeline ## Version 2.0.2 * Fixed bug for `Get-AzDiagnosticSetting` when metrics or logs are null [#12272] diff --git a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md index d31253f9b24d..ecec9794efa2 100644 --- a/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md +++ b/src/Monitor/Monitor/help/Add-AzMetricAlertRuleV2.md @@ -17,26 +17,9 @@ Adds or updates a V2 (non-classic) metric-based alert rule. Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceId -Condition - [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] - [-Confirm] [] -``` - -### CreateAlertByResourceIdAndActionGroup -``` -Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency - -TargetResourceId - -Condition - -ActionGroup [-DisableRule] [-Description ] -Severity - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### CreateAlertByResourceIdAndActionGroupId -``` -Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency - -TargetResourceId - -Condition - -ActionGroupId [-DisableRule] [-Description ] -Severity - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ActionGroup ] [-ActionGroupId ] [-DisableRule] + [-Description ] -Severity [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### CreateAlertByScopes @@ -44,26 +27,9 @@ Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize < Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency -TargetResourceScope -TargetResourceType -TargetResourceRegion -Condition - [-DisableRule] [-Description ] -Severity [-DefaultProfile ] [-WhatIf] - [-Confirm] [] -``` - -### CreateAlertByScopesAndActionGroup -``` -Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency - -TargetResourceScope -TargetResourceType -TargetResourceRegion - -Condition - -ActionGroup [-DisableRule] [-Description ] -Severity - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### CreateAlertByScopesAndActionGroupId -``` -Add-AzMetricAlertRuleV2 -Name -ResourceGroupName -WindowSize -Frequency - -TargetResourceScope -TargetResourceType -TargetResourceRegion - -Condition - -ActionGroupId [-DisableRule] [-Description ] -Severity - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ActionGroup ] [-ActionGroupId ] [-DisableRule] + [-Description ] -Severity [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -185,13 +151,13 @@ The Action Group for rule ```yaml Type: Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[] -Parameter Sets: CreateAlertByResourceIdAndActionGroup, CreateAlertByScopesAndActionGroup +Parameter Sets: (All) Aliases: Actions -Required: True +Required: False Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: True (ByPropertyName, ByValue) Accept wildcard characters: False ``` @@ -200,10 +166,10 @@ The Action Group id for rule ```yaml Type: System.String[] -Parameter Sets: CreateAlertByResourceIdAndActionGroupId, CreateAlertByScopesAndActionGroupId +Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: True (ByPropertyName) @@ -335,7 +301,7 @@ The target resource id for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByResourceId, CreateAlertByResourceIdAndActionGroup, CreateAlertByResourceIdAndActionGroupId +Parameter Sets: CreateAlertByResourceId Aliases: Required: True @@ -350,7 +316,7 @@ The target resource region for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopes, CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId +Parameter Sets: CreateAlertByScopes Aliases: Required: True @@ -365,7 +331,7 @@ The target resource scope for rule ```yaml Type: System.String[] -Parameter Sets: CreateAlertByScopes, CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId +Parameter Sets: CreateAlertByScopes Aliases: Scopes Required: True @@ -380,7 +346,7 @@ The target resource type for rule ```yaml Type: System.String -Parameter Sets: CreateAlertByScopes, CreateAlertByScopesAndActionGroup, CreateAlertByScopesAndActionGroupId +Parameter Sets: CreateAlertByScopes Aliases: Required: True diff --git a/src/MySql/Az.MySql.format.ps1xml b/src/MySql/Az.MySql.format.ps1xml index a4a7d3b67b25..c2a0508b996c 100644 --- a/src/MySql/Az.MySql.format.ps1xml +++ b/src/MySql/Az.MySql.format.ps1xml @@ -648,9 +648,6 @@ - - - @@ -679,9 +676,6 @@ SkuName - - SkuSize - SkuTier diff --git a/src/MySql/Az.MySql.psd1 b/src/MySql/Az.MySql.psd1 index 467bc2d2e7ca..cc8e037baae0 100644 --- a/src/MySql/Az.MySql.psd1 +++ b/src/MySql/Az.MySql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/9/2020 +# Generated on: 8/12/2020 # @{ @@ -72,7 +72,7 @@ FormatsToProcess = './Az.MySql.format.ps1xml' FunctionsToExport = 'Get-AzMySqlConfiguration', 'Get-AzMySqlConnectionString', 'Get-AzMySqlFirewallRule', 'Get-AzMySqlReplica', 'Get-AzMySqlServer', 'Get-AzMySqlVirtualNetworkRule', 'New-AzMySqlFirewallRule', - 'New-AzMySqlServer', 'New-AzMySqlServerReplica', + 'New-AzMySqlReplica', 'New-AzMySqlServer', 'New-AzMySqlVirtualNetworkRule', 'Remove-AzMySqlFirewallRule', 'Remove-AzMySqlServer', 'Remove-AzMySqlVirtualNetworkRule', 'Restart-AzMySqlServer', 'Restore-AzMySqlServer', @@ -115,7 +115,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* the first preview release' + # ReleaseNotes = '' # Prerelease string of this module # Prerelease = '' diff --git a/src/MySql/Az.MySql.psm1 b/src/MySql/Az.MySql.psm1 index bc1d80fc5088..3e7a8ca88acb 100644 --- a/src/MySql/Az.MySql.psm1 +++ b/src/MySql/Az.MySql.psm1 @@ -16,7 +16,7 @@ $accountsName = 'Az.Accounts' $accountsModule = Get-Module -Name $accountsName if(-not $accountsModule) { - $localAccountsPath = Join-Path $PSScriptRoot 'generated/modules' + $localAccountsPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localAccountsPath) { $localAccounts = Get-ChildItem -Path $localAccountsPath -Recurse -Include 'Az.Accounts.psd1' | Select-Object -Last 1 if($localAccounts) { @@ -24,17 +24,17 @@ } } if(-not $accountsModule) { - $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.7.4' } | Measure-Object).Count -gt 0 + $hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.8.1' } | Measure-Object).Count -gt 0 if($hasAdequateVersion) { - $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.7.4 -Scope Global -PassThru + $accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.8.1 -Scope Global -PassThru } } } if(-not $accountsModule) { - Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop - } elseif (($accountsModule.Version -lt [System.Version]'1.7.4') -and (-not $localAccounts)) { - Write-Error "`nThis module requires $accountsName version 1.7.4 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop + } elseif (($accountsModule.Version -lt [System.Version]'1.8.1') -and (-not $localAccounts)) { + Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop } Write-Information "Loaded Module '$($accountsModule.Name)'" diff --git a/src/MySql/ChangeLog.md b/src/MySql/ChangeLog.md index b76ecb79cf4a..02cad124d94c 100644 --- a/src/MySql/ChangeLog.md +++ b/src/MySql/ChangeLog.md @@ -18,6 +18,13 @@ - Additional information about change #1 --> ## Upcoming Release +* Remove legacy SkuSize from input and output (#11725) +* Specify a default name when create MySql firewall rule without name and add AllowAll mode (#11932) +* Enable EndIpAddress to be absent if only one IP to be authorized in firewall rule (#11933) +* Add validateset for parameter StorageAutogrow (#11936) +* Rename New-AzMySqlServerReplica to New-AzMySqlReplica (#11938) +* Use 'master' and 'replica' to avoid confusion when create mysql replica server (#11939) +* Provide hint in doc to use Update-AzMySqlServer & Update-AzMySqlServerConfiguration as a candidate for each other (#11954) ## Version 0.1.0 * the first preview release diff --git a/src/MySql/build-module.ps1 b/src/MySql/build-module.ps1 index 261cfa3a1801..2c5033c7ff80 100644 --- a/src/MySql/build-module.ps1 +++ b/src/MySql/build-module.ps1 @@ -88,7 +88,7 @@ if(-not $Debugger) { $null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path (Join-Path $binFolder 'Debug'), (Join-Path $binFolder 'Release') } -$dll = Join-Path $PSScriptRoot 'bin/Az.MySql.private.dll' +$dll = Join-Path $PSScriptRoot 'bin\Az.MySql.private.dll' if(-not (Test-Path $dll)) { Write-Error "Unable to find output assembly in '$binFolder'." } @@ -97,7 +97,7 @@ if(-not (Test-Path $dll)) { $null = Import-Module -Name $dll $modulePaths = $dll -$customPsm1 = Join-Path $PSScriptRoot 'custom/Az.MySql.custom.psm1' +$customPsm1 = Join-Path $PSScriptRoot 'custom\Az.MySql.custom.psm1' if(Test-Path $customPsm1) { $modulePaths = @($dll, $customPsm1) } diff --git a/src/MySql/check-dependencies.ps1 b/src/MySql/check-dependencies.ps1 index 30af57603366..513c52ca2fb5 100644 --- a/src/MySql/check-dependencies.ps1 +++ b/src/MySql/check-dependencies.ps1 @@ -21,13 +21,15 @@ if(-not $Isolated) { return } -function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum) { +function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) { if($predicate) { $module = Get-Module -ListAvailable -Name $moduleName if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) { $null = New-Item -ItemType Directory -Force -Path $path Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..." - if($versionMinimum) { + if ($requiredVersion) { + Find-Module -Name $moduleName -RequiredVersion $requiredVersion -Repository PSGallery | Save-Module -Path $path + }elseif($versionMinimum) { Find-Module -Name $moduleName -MinimumVersion $versionMinimum -Repository PSGallery | Save-Module -Path $path } else { Find-Module -Name $moduleName -Repository PSGallery | Save-Module -Path $path @@ -39,13 +41,13 @@ function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [ $ProgressPreference = 'SilentlyContinue' $all = (@($Accounts.IsPresent, $Pester.IsPresent) | Select-Object -Unique | Measure-Object).Count -eq 1 -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } -DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.7.4' -DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -versionMinimum '' +DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.8.1' +DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1' $tools = Join-Path $PSScriptRoot 'tools' $resourceDir = Join-Path $tools 'Resources' diff --git a/src/MySql/custom/Az.MySql.custom.psm1 b/src/MySql/custom/Az.MySql.custom.psm1 index 30b1e8be3321..09c4eb0b3234 100644 --- a/src/MySql/custom/Az.MySql.custom.psm1 +++ b/src/MySql/custom/Az.MySql.custom.psm1 @@ -1,9 +1,9 @@ # region Generated # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '../bin/Az.MySql.private.dll') + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.MySql.private.dll') # Load the internal module - $internalModulePath = Join-Path $PSScriptRoot '../internal/Az.MySql.internal.psm1' + $internalModulePath = Join-Path $PSScriptRoot '..\internal\Az.MySql.internal.psm1' if(Test-Path $internalModulePath) { $null = Import-Module -Name $internalModulePath } diff --git a/src/MySql/custom/New-AzMySqlFirewallRule.ps1 b/src/MySql/custom/New-AzMySqlFirewallRule.ps1 new file mode 100644 index 000000000000..c38f39cb2a4a --- /dev/null +++ b/src/MySql/custom/New-AzMySqlFirewallRule.ps1 @@ -0,0 +1,166 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +#> +function New-AzMySqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server firewall rule. + # If not specified, the default is undefined. + # If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + # If range contains one IP, use StartIPAddress only. + ${StartIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + if($PSBoundParameters.ContainsKey('AllowAll')) + { + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = Get-Date -Format "AllowAll_yyyy-MM-dd_HH-mm-ss" + } + $PSBoundParameters['StartIPAddress'] = "0.0.0.0" + $PSBoundParameters['EndIPAddress'] = "255.255.255.255" + + $null = $PSBoundParameters.Remove('AllowAll') + } + else + { + if(!$PSBoundParameters.ContainsKey('Name')) + { + $PSBoundParameters['Name'] = "undefined" + } + if(!$PSBoundParameters.ContainsKey('EndIPAddress')) + { + $PSBoundParameters['EndIPAddress'] = $PSBoundParameters['StartIPAddress'] + } + } + + Az.MySql.internal\New-AzMySqlFirewallRule @PSBoundParameters + } catch { + throw + } +} +} diff --git a/src/MySql/custom/New-AzMySqlServerReplica.ps1 b/src/MySql/custom/New-AzMySqlReplica.ps1 similarity index 92% rename from src/MySql/custom/New-AzMySqlServerReplica.ps1 rename to src/MySql/custom/New-AzMySqlReplica.ps1 index 8c263fcc3884..a6551e95d5f3 100644 --- a/src/MySql/custom/New-AzMySqlServerReplica.ps1 +++ b/src/MySql/custom/New-AzMySqlReplica.ps1 @@ -13,16 +13,16 @@ # limitations under the License. # ---------------------------------------------------------------------------------- -function New-AzMySqlServerReplica { +function New-AzMySqlReplica { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Description('Creates a new replica from an existing database.')] param( [Parameter(Mandatory, HelpMessage = 'The name of the server.')] - [Alias('ReplicaServerName')] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - ${Name}, + ${Replica}, [Parameter(Mandatory, HelpMessage = 'The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal.')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] @@ -36,9 +36,10 @@ function New-AzMySqlServerReplica { ${SubscriptionId}, [Parameter(Mandatory, ValueFromPipeline, HelpMessage = 'The source server object to create replica from.')] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer] - ${InputObject}, + ${Master}, [Parameter(HelpMessage = 'The location the resource resides in.')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] @@ -112,10 +113,10 @@ function New-AzMySqlServerReplica { $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.ServerPropertiesForReplica]::new() $Parameter.CreateMode = [Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.CreateMode]::Replica - $server = $PSBoundParameters['InputObject'] + $server = $PSBoundParameters['Master'] $Parameter.Property.SourceServerId = $server.Id $Parameter.Location = $server.Location - $null = $PSBoundParameters.Remove('InputObject') + $null = $PSBoundParameters.Remove('Master') if ($PSBoundParameters.ContainsKey('Location')) { $Parameter.Location = $PSBoundParameters['Location'] @@ -127,6 +128,12 @@ function New-AzMySqlServerReplica { $null = $PSBoundParameters.Remove('Sku') } + if ($PSBoundParameters.ContainsKey('Replica')) + { + $PSBoundParameters['Name'] = $PSBoundParameters['Replica'] + $null = $PSBoundParameters.Remove('Replica') + } + $PSBoundParameters.Add('Parameter', $Parameter) Az.MySql.internal\New-AzMySqlServer @PSBoundParameters diff --git a/src/MySql/custom/New-AzMySqlServer.ps1 b/src/MySql/custom/New-AzMySqlServer.ps1 index f207e30ebd77..ba28f06af47b 100644 --- a/src/MySql/custom/New-AzMySqlServer.ps1 +++ b/src/MySql/custom/New-AzMySqlServer.ps1 @@ -75,6 +75,7 @@ function New-AzMySqlServer { [Parameter(HelpMessage = 'Enable Storage Auto Grow.')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow])] + [Validateset('Enabled', 'Disabled')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow] ${StorageAutogrow}, diff --git a/src/MySql/custom/Update-AzMySqlConfiguration.ps1 b/src/MySql/custom/Update-AzMySqlConfiguration.ps1 new file mode 100644 index 000000000000..c58706844980 --- /dev/null +++ b/src/MySql/custom/Update-AzMySqlConfiguration.ps1 @@ -0,0 +1,135 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. +.Description +Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. +#> +function Update-AzMySqlConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server configuration. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] + # Identity Parameter. + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Uri] + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.PSCredential] + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + ${ProxyUseDefaultCredentials} +) + +process { + try { + Az.MySql.internal\Update-AzMySqlConfiguration @PSBoundParameters + } catch { + throw + } +} +} diff --git a/src/MySql/custom/Update-AzMySqlFirewallRule.ps1 b/src/MySql/custom/Update-AzMySqlFirewallRule.ps1 new file mode 100644 index 000000000000..69faa7c9c4fb --- /dev/null +++ b/src/MySql/custom/Update-AzMySqlFirewallRule.ps1 @@ -0,0 +1,146 @@ + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Creates a new firewall rule or updates an existing firewall rule. +.Description +Creates a new firewall rule or updates an existing firewall rule. +#> +function Update-AzMySqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server firewall rule. + ${Name}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + # If range contains one IP, use StartIPAddress only. + ${StartIPAddress}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + try { + if(!$PSBoundParameters.ContainsKey('EndIPAddress')) + { + $PSBoundParameters['EndIPAddress'] = $PSBoundParameters['StartIPAddress'] + } + Az.MySql.internal\Update-AzMySqlFirewallRule @PSBoundParameters + } catch { + throw + } +} +} diff --git a/src/MySql/custom/Update-AzMySqlServer.ps1 b/src/MySql/custom/Update-AzMySqlServer.ps1 index f5fb5bf18773..b7e4694aace9 100644 --- a/src/MySql/custom/Update-AzMySqlServer.ps1 +++ b/src/MySql/custom/Update-AzMySqlServer.ps1 @@ -16,7 +16,7 @@ function Update-AzMySqlServer { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Description('Updates an existing server. The request body can contain one to many of the properties present in the normal server definition.')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Description('Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count.')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory, HelpMessage='The name of the server.')] [Alias('ServerName')] @@ -65,11 +65,6 @@ function Update-AzMySqlServer { [System.String] ${Sku}, - [Parameter(HelpMessage='The size code, to be interpreted by resource as appropriate.')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - ${SkuSize}, - [Parameter(HelpMessage='The tier of the particular SKU, e.g. Basic.')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier])] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] @@ -89,6 +84,7 @@ function Update-AzMySqlServer { [Parameter(HelpMessage='Enable Storage Auto Grow.')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow])] + [Validateset('Enabled', 'Disabled')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.StorageAutogrow] ${StorageAutogrow}, diff --git a/src/MySql/custom/readme.md b/src/MySql/custom/readme.md index 0fa9af4fcbfc..f8336dda153d 100644 --- a/src/MySql/custom/readme.md +++ b/src/MySql/custom/readme.md @@ -1,5 +1,5 @@ # Custom -This directory contains custom implementation for non-generated cmdlets for the `Az.MySql` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.MySql.custom.psm1`. This file should not be modified. +This directory contains custom implementation for non-generated cmdlets for the `Az.MySql` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `..\exports` folder. The only generated file into this folder is the `Az.MySql.custom.psm1`. This file should not be modified. ## Info - Modifiable: yes @@ -15,10 +15,10 @@ For C# cmdlets, they are compiled with the rest of the generated low-level cmdle For script cmdlets, these are loaded via the `Az.MySql.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundemental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. ## Purpose -This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `..\exports` folder. ## Usage -The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `..\exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: - Break - DefaultProfile - HttpPipelineAppend @@ -36,6 +36,6 @@ For processing the cmdlets, we've created some additional attributes: - `Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.DoNotExportAttribute` - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.MySql`. - `Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.InternalExportAttribute` - - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.MySql`. For more information, see [readme.md](../internal/readme.md) in the `../internal` folder. + - Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Az.MySql`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder. - `Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.ProfileAttribute` - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/MySql/examples/Get-AzMySqlReplica.md b/src/MySql/examples/Get-AzMySqlReplica.md index 690ef92fdc78..93ffa81f1bac 100644 --- a/src/MySql/examples/Get-AzMySqlReplica.md +++ b/src/MySql/examples/Get-AzMySqlReplica.md @@ -2,9 +2,9 @@ ```powershell PS C:\> Get-AzMySqlReplica -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` -This cmdlet gets MySql server replica by resource group and server name. \ No newline at end of file +This cmdlet gets MySql server replica by resource group and server name. diff --git a/src/MySql/examples/Get-AzMySqlServer.md b/src/MySql/examples/Get-AzMySqlServer.md index a9ea3a641b9e..e65336638472 100644 --- a/src/MySql/examples/Get-AzMySqlServer.md +++ b/src/MySql/examples/Get-AzMySqlServer.md @@ -2,9 +2,9 @@ ```powershell PS C:\> Get-AzMySqlServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet gets MySql server with default context. @@ -13,9 +13,9 @@ This cmdlet gets MySql server with default context. ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet gets MySql server by resource group and server name. @@ -24,9 +24,9 @@ This cmdlet gets MySql server by resource group and server name. ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet lists all the MySql servers in specified resource group. @@ -36,9 +36,9 @@ This cmdlet lists all the MySql servers in specified resource group. PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test" PS C:\> Get-AzMySqlServer -InputObject $ID -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet lists gets MySql server by identity. diff --git a/src/MySql/examples/New-AzMySqlFirewallRule.md b/src/MySql/examples/New-AzMySqlFirewallRule.md index 23d82111a559..d6602ff94f3b 100644 --- a/src/MySql/examples/New-AzMySqlFirewallRule.md +++ b/src/MySql/examples/New-AzMySqlFirewallRule.md @@ -2,9 +2,31 @@ ```powershell PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 -Name Type ----- ---- -rule Microsoft.DBforMySQL/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 ``` -This cmdlets create a MySql server Firewall Rule. \ No newline at end of file +This cmdlets create a MySql server Firewall Rule. + +### Example 2: Create a new MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized +```powershell +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -StartIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.1 0.0.0.1 +``` + +This cmdlets create a MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized. + +### Example 3: Create a new MySql Firewall Rule to allow all IPs +```powershell +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +``` + +This cmdlets create a new MySql Firewall Rule to allow all IPs. \ No newline at end of file diff --git a/src/MySql/examples/New-AzMySqlReplica.md b/src/MySql/examples/New-AzMySqlReplica.md new file mode 100644 index 000000000000..2d9c265cd231 --- /dev/null +++ b/src/MySql/examples/New-AzMySqlReplica.md @@ -0,0 +1,22 @@ +### Example 1: Create a new MySql server replica +```powershell +PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlReplica -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +``` + +This cmdlet creates a new MySql server replica. + +### Example 2: Create a new MySql server replica +```powershell +PS C:\> $mysql = Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test +PS C:\> New-AzMySqlReplica -Master $mysql -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +``` + +This cmdlet with parameter master(inputobject) creates a new MySql server replica. diff --git a/src/MySql/examples/New-AzMySqlServer.md b/src/MySql/examples/New-AzMySqlServer.md index c3b17fa6e8c3..59cab1143f80 100644 --- a/src/MySql/examples/New-AzMySqlServer.md +++ b/src/MySql/examples/New-AzMySqlServer.md @@ -2,9 +2,9 @@ ```powershell PS C:\> New-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -Location eastus -AdministratorUser mysql_test -AdministratorLoginPassword $password -Sku GP_Gen5_4 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` These cmdlets create a new MySql server. diff --git a/src/MySql/examples/New-AzMySqlServerReplica.md b/src/MySql/examples/New-AzMySqlServerReplica.md deleted file mode 100644 index 9dcfa2306046..000000000000 --- a/src/MySql/examples/New-AzMySqlServerReplica.md +++ /dev/null @@ -1,10 +0,0 @@ -### Example 1: Create a new MySql server replica -```powershell -PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlServerReplica -Name mysql-test-replica -ResourceGroupName PowershellMySqlTest - -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled -``` - -This cmdlet creates a new MySql server replica. \ No newline at end of file diff --git a/src/MySql/examples/Restore-AzMySqlServer.md b/src/MySql/examples/Restore-AzMySqlServer.md index 5333356ca31c..76b32c1b542d 100644 --- a/src/MySql/examples/Restore-AzMySqlServer.md +++ b/src/MySql/examples/Restore-AzMySqlServer.md @@ -2,9 +2,9 @@ ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test-replica | Restore-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -UseGeoRestore -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet restores MySql server using GeoReplica Restore. @@ -14,9 +14,9 @@ This cmdlet restores MySql server using GeoReplica Restore. PS C:\> $restorePointInTime = (Get-Date).AddMinutes(-10) PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Restore-AzMySqlServer -Name mysql-test-restore -ResourceGroupName PowershellMySqlTest -RestorePointInTime $restorePointInTime -UsePointInTimeRestore -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` These cmdlets restore MySql server using PointInTime Restore. diff --git a/src/MySql/examples/Update-AzMySqlFirewallRule.md b/src/MySql/examples/Update-AzMySqlFirewallRule.md index d2420ab09381..e5f7a398c09b 100644 --- a/src/MySql/examples/Update-AzMySqlFirewallRule.md +++ b/src/MySql/examples/Update-AzMySqlFirewallRule.md @@ -19,4 +19,16 @@ Name StartIPAddress EndIPAddress rule 0.0.0.2 0.0.0.3 ``` -These cmdlets update MySql Firewall Rule by identity. \ No newline at end of file +These cmdlets update MySql Firewall Rule by identity. + +### Example 3: Update MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" +PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 +``` + +These cmdlets update MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized. \ No newline at end of file diff --git a/src/MySql/examples/Update-AzMySqlServer.md b/src/MySql/examples/Update-AzMySqlServer.md index 864133de19df..c13bd55fa217 100644 --- a/src/MySql/examples/Update-AzMySqlServer.md +++ b/src/MySql/examples/Update-AzMySqlServer.md @@ -2,9 +2,9 @@ ```powershell PS C:\> Update-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -SslEnforcement Disabled -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet updates MySql server by resource group and server name. @@ -13,9 +13,9 @@ This cmdlet updates MySql server by resource group and server name. ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Update-AzMySqlServer -BackupRetentionDay 23 -StorageMb 10240 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet updates MySql server by identity. diff --git a/src/MySql/export-surface.ps1 b/src/MySql/export-surface.ps1 index 666ff4777d3f..c9fcbde013e7 100644 --- a/src/MySql/export-surface.ps1 +++ b/src/MySql/export-surface.ps1 @@ -21,7 +21,7 @@ if(-not $Isolated) { return } -$dll = Join-Path $PSScriptRoot 'bin/Az.MySql.private.dll' +$dll = Join-Path $PSScriptRoot 'bin\Az.MySql.private.dll' if(-not (Test-Path $dll)) { Write-Error "Unable to find output assembly in '$binFolder'." } diff --git a/src/MySql/exports/Get-AzMySqlConfiguration.ps1 b/src/MySql/exports/Get-AzMySqlConfiguration.ps1 index 9ac0f65fb790..863e1bb7ddf0 100644 --- a/src/MySql/exports/Get-AzMySqlConfiguration.ps1 +++ b/src/MySql/exports/Get-AzMySqlConfiguration.ps1 @@ -45,6 +45,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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 diff --git a/src/MySql/exports/Get-AzMySqlConnectionString.ps1 b/src/MySql/exports/Get-AzMySqlConnectionString.ps1 index f9973cbb8e68..bc8d204ce6e3 100644 --- a/src/MySql/exports/Get-AzMySqlConnectionString.ps1 +++ b/src/MySql/exports/Get-AzMySqlConnectionString.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer System.String .Notes 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 : The source server object to create replica from. diff --git a/src/MySql/exports/Get-AzMySqlFirewallRule.ps1 b/src/MySql/exports/Get-AzMySqlFirewallRule.ps1 index 37e288315a6d..5edf2c7e5a75 100644 --- a/src/MySql/exports/Get-AzMySqlFirewallRule.ps1 +++ b/src/MySql/exports/Get-AzMySqlFirewallRule.ps1 @@ -44,6 +44,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 diff --git a/src/MySql/exports/Get-AzMySqlReplica.ps1 b/src/MySql/exports/Get-AzMySqlReplica.ps1 index c3c6a2c46659..bd1808902ac8 100644 --- a/src/MySql/exports/Get-AzMySqlReplica.ps1 +++ b/src/MySql/exports/Get-AzMySqlReplica.ps1 @@ -21,9 +21,9 @@ List all the replicas for a given server. .Example PS C:\> Get-AzMySqlReplica -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Outputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer diff --git a/src/MySql/exports/Get-AzMySqlServer.ps1 b/src/MySql/exports/Get-AzMySqlServer.ps1 index 701085de52e4..3cc285401061 100644 --- a/src/MySql/exports/Get-AzMySqlServer.ps1 +++ b/src/MySql/exports/Get-AzMySqlServer.ps1 @@ -21,28 +21,28 @@ Gets information about a server. .Example PS C:\> Get-AzMySqlServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test" PS C:\> Get-AzMySqlServer -InputObject $ID -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity @@ -50,6 +50,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 diff --git a/src/MySql/exports/Get-AzMySqlVirtualNetworkRule.ps1 b/src/MySql/exports/Get-AzMySqlVirtualNetworkRule.ps1 index cba99a09c1d6..258ccc9b88b7 100644 --- a/src/MySql/exports/Get-AzMySqlVirtualNetworkRule.ps1 +++ b/src/MySql/exports/Get-AzMySqlVirtualNetworkRule.ps1 @@ -44,6 +44,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 diff --git a/src/MySql/exports/New-AzMySqlFirewallRule.ps1 b/src/MySql/exports/New-AzMySqlFirewallRule.ps1 index 84cfa2c03fee..efa3d67fa041 100644 --- a/src/MySql/exports/New-AzMySqlFirewallRule.ps1 +++ b/src/MySql/exports/New-AzMySqlFirewallRule.ps1 @@ -21,9 +21,21 @@ Creates a new firewall rule or updates an existing firewall rule. .Example PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 -Name Type ----- ---- -rule Microsoft.DBforMySQL/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -StartIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 .Outputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule @@ -34,13 +46,6 @@ function New-AzMySqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] - [Alias('FirewallRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [System.String] - # The name of the server firewall rule. - ${Name}, - [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] @@ -54,6 +59,15 @@ param( # The name of the server. ${ServerName}, + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server firewall rule. + # If not specified, the default is undefined. + # If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. + ${Name}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] @@ -61,19 +75,26 @@ param( # The ID of the target subscription. ${SubscriptionId}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The end IP address of the server firewall rule. + # The start IP address of the server firewall rule. # Must be IPv4 format. - ${EndIPAddress}, + # If range contains one IP, use StartIPAddress only. + ${StartIPAddress}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The start IP address of the server firewall rule. + # The end IP address of the server firewall rule. # Must be IPv4 format. - ${StartIPAddress}, + ${EndIPAddress}, + + [Parameter(ParameterSetName='AllowAll', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -143,9 +164,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - CreateExpanded = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateExpanded'; + CreateExpanded = 'Az.MySql.custom\New-AzMySqlFirewallRule'; + AllowAll = 'Az.MySql.custom\New-AzMySqlFirewallRule'; } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded', 'AllowAll') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/MySql/exports/New-AzMySqlServerReplica.ps1 b/src/MySql/exports/New-AzMySqlReplica.ps1 similarity index 87% rename from src/MySql/exports/New-AzMySqlServerReplica.ps1 rename to src/MySql/exports/New-AzMySqlReplica.ps1 index 3dfae3871525..0bcf936f0f91 100644 --- a/src/MySql/exports/New-AzMySqlServerReplica.ps1 +++ b/src/MySql/exports/New-AzMySqlReplica.ps1 @@ -19,11 +19,18 @@ Creates a new replica from an existing database. .Description Creates a new replica from an existing database. .Example -PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlServerReplica -Name mysql-test-replica -ResourceGroupName PowershellMySqlTest +PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlReplica -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +.Example +PS C:\> $mysql = Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test +PS C:\> New-AzMySqlReplica -Master $mysql -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer @@ -31,9 +38,10 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 : The source server object to create replica from. +MASTER : The source server object to create replica from. Location : The location the resource resides in. [Tag ]: Application-specific metadata in the form of key-value pairs. [(Any) ]: This indicates any property can be added to this object. @@ -60,18 +68,18 @@ INPUTOBJECT : The source server object to create replica from. [UserVisibleState ]: A state of a server that is visible to user. [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlserverreplica +https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlreplica #> -function New-AzMySqlServerReplica { +function New-AzMySqlReplica { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] - [Alias('ReplicaServerName')] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. - ${Name}, + ${Replica}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] @@ -87,11 +95,12 @@ param( ${SubscriptionId}, [Parameter(Mandatory, ValueFromPipeline)] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer] # The source server object to create replica from. - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + # To construct, see NOTES section for MASTER properties and create a hash table. + ${Master}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] @@ -169,7 +178,7 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - CreateExpanded = 'Az.MySql.custom\New-AzMySqlServerReplica'; + CreateExpanded = 'Az.MySql.custom\New-AzMySqlReplica'; } if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id diff --git a/src/MySql/exports/New-AzMySqlServer.ps1 b/src/MySql/exports/New-AzMySqlServer.ps1 index e7c853f8f93e..3df081b8547f 100644 --- a/src/MySql/exports/New-AzMySqlServer.ps1 +++ b/src/MySql/exports/New-AzMySqlServer.ps1 @@ -21,9 +21,9 @@ Creates a new server. .Example PS C:\> New-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -Location eastus -AdministratorUser mysql_test -AdministratorLoginPassword $password -Sku GP_Gen5_4 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Outputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer diff --git a/src/MySql/exports/ProxyCmdletDefinitions.ps1 b/src/MySql/exports/ProxyCmdletDefinitions.ps1 index e3ba5afaab82..e93685f48073 100644 --- a/src/MySql/exports/ProxyCmdletDefinitions.ps1 +++ b/src/MySql/exports/ProxyCmdletDefinitions.ps1 @@ -45,6 +45,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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 @@ -236,6 +237,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 @@ -404,9 +406,9 @@ List all the replicas for a given server. .Example PS C:\> Get-AzMySqlReplica -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Outputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer @@ -546,28 +548,28 @@ Gets information about a server. .Example PS C:\> Get-AzMySqlServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Example PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test" PS C:\> Get-AzMySqlServer -InputObject $ID -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity @@ -575,6 +577,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 @@ -761,6 +764,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 @@ -927,181 +931,6 @@ end { # limitations under the License. # ---------------------------------------------------------------------------------- -<# -.Synopsis -Creates a new firewall rule or updates an existing firewall rule. -.Description -Creates a new firewall rule or updates an existing firewall rule. -.Example -PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 - -Name Type ----- ---- -rule Microsoft.DBforMySQL/servers/firewallRules - -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule -.Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlfirewallrule -#> -function New-AzMySqlFirewallRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(Mandatory)] - [Alias('FirewallRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [System.String] - # The name of the server firewall rule. - ${Name}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [System.String] - # The name of the resource group. - # The name is case insensitive. - ${ResourceGroupName}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [System.String] - # The name of the server. - ${ServerName}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - [System.String] - # The ID of the target subscription. - ${SubscriptionId}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - # The end IP address of the server firewall rule. - # Must be IPv4 format. - ${EndIPAddress}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - # The start IP address of the server firewall rule. - # Must be IPv4 format. - ${StartIPAddress}, - - [Parameter()] - [Alias('AzureRMContext', 'AzureCredential')] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Azure')] - [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. - ${DefaultProfile}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) - -begin { - try { - $outBuffer = $null - if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { - $PSBoundParameters['OutBuffer'] = 1 - } - $parameterSet = $PSCmdlet.ParameterSetName - $mapping = @{ - CreateExpanded = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateExpanded'; - } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { - $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id - } - $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) - $scriptCmd = {& $wrappedCmd @PSBoundParameters} - $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) - $steppablePipeline.Begin($PSCmdlet) - } catch { - throw - } -} - -process { - try { - $steppablePipeline.Process($_) - } catch { - throw - } -} - -end { - try { - $steppablePipeline.End() - } catch { - throw - } -} -} - -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- - <# .Synopsis Creates or updates an existing virtual network rule. @@ -1301,6 +1130,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 @@ -1494,6 +1324,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 @@ -1681,6 +1512,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 @@ -1874,6 +1706,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 @@ -2044,29 +1877,32 @@ end { <# .Synopsis -Updates a configuration of a server. +Creates or updates an existing virtual network rule. .Description -Updates a configuration of a server. +Creates or updates an existing virtual network rule. .Example -PS C:\> Update-AzMySqlConfiguration -Name net_retry_count -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -Value 15 +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2" +PS C:\> Update-AzMySqlVirtualNetworkRule -Name $env.VNetName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -SubnetId $ID -Name Value ----- ----- -net_retry_count 15 +Name Type +---- ---- +vnet Microsoft.DBforMySQL/servers/virtualNetworkRules .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/configurations/wait_timeout" -PS C:\> Update-AzMySqlConfiguration -InputObject $ID -Value 150 +PS C:\> $SubnetID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1" +PS C:\> $VNetID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/virtualNetworkRules/vnet" +PS C:\> Update-AzMySqlVirtualNetworkRule -InputObject $VNetID -SubnetId $SubnetID -Name Value ----- ----- -wait_timeout 150 +Name Type +---- ---- +vnet Microsoft.DBforMySQL/servers/virtualNetworkRules .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 @@ -2081,17 +1917,17 @@ INPUTOBJECT : Identity Parameter [SubscriptionId ]: The ID of the target subscription. [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlconfiguration +https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlvirtualnetworkrule #> -function Update-AzMySqlConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration])] +function Update-AzMySqlVirtualNetworkRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('ConfigurationName')] + [Alias('VirtualNetworkRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the server configuration. + # The name of the virtual network rule. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -2121,17 +1957,17 @@ param( # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter()] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # Source of the configuration. - ${Source}, + # The ARM resource id of the virtual network subnet. + ${SubnetId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - # Value of the configuration. - ${Value}, + [System.Management.Automation.SwitchParameter] + # Create firewall rule before the virtual network has vnet service endpoint enabled. + ${IgnoreMissingVnetServiceEndpoint}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -2173,6 +2009,12 @@ param( # Run the command asynchronously ${NoWait}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Uri] @@ -2201,8 +2043,8 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.MySql.private\Update-AzMySqlVirtualNetworkRule_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id @@ -2249,97 +2091,93 @@ end { <# .Synopsis -Creates a new firewall rule or updates an existing firewall rule. +Get the connection string according to client connection provider. .Description -Creates a new firewall rule or updates an existing firewall rule. +Get the connection string according to client connection provider. .Example -PS C:\> Update-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 +PS C:\> Get-AzMySqlConnectionString -Client ADO.NET -Name mysql-test -ResourceGroupName PowershellMySqlTest -Name StartIPAddress EndIPAddress ----- -------------- ------------ -rule 0.0.0.2 0.0.0.3 +Server=mysql-test.mysql.database.azure.com; Port=3306; Database={your_database}; Uid=mysql_test@mysql-test; Pwd={your_password}; .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" -PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 +PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Get-AzMySqlConnectionString -Client PHP -Name StartIPAddress EndIPAddress ----- -------------- ------------ -rule 0.0.0.2 0.0.0.3 +$con=mysqli_init(); mysqli_real_connect($con, "mysql-test.mysql.database.azure.com", "mysql_test@mysql-test", {your_password}, {your_database}, 3306); .Inputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Outputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule +System.String .Notes 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 - [ConfigurationName ]: The name of the server configuration. - [DatabaseName ]: The name of the database. - [FirewallRuleName ]: The name of the server firewall rule. - [Id ]: Resource identity path - [LocationName ]: The name of the location. - [ResourceGroupName ]: The name of the resource group. The name is case insensitive. - [SecurityAlertPolicyName ]: The name of the security alert policy. - [ServerName ]: The name of the server. - [SubscriptionId ]: The ID of the target subscription. - [VirtualNetworkRuleName ]: The name of the virtual network rule. +INPUTOBJECT : The source server object to create replica from. + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [InfrastructureEncryption ]: Status showing whether the server enabled infrastructure encryption. + [MasterServerId ]: The master server id of a replica server. + [MinimalTlsVersion ]: Enforce a minimal Tls version for the server. + [PublicNetworkAccess ]: Whether or not public network access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlfirewallrule +https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlconnectionstring #> -function Update-AzMySqlFirewallRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Get-AzMySqlConnectionString { +[OutputType([System.String])] +[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('FirewallRuleName')] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the server firewall rule. - ${Name}, + # Client connection provider. + ${Client}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('ServerName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the resource group. - # The name is case insensitive. - ${ResourceGroupName}, + # The name of the server. + ${Name}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the server. - ${ServerName}, + # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='Get')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The ID of the target subscription. + # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] - # Identity Parameter + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer] + # The source server object to create replica from. # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - # The end IP address of the server firewall rule. - # Must be IPv4 format. - ${EndIPAddress}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - # The start IP address of the server firewall rule. - # Must be IPv4 format. - ${StartIPAddress}, - [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -2348,55 +2186,38 @@ param( # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach + # Wait for .NET debugger to attach. ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Uri] - # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) @@ -2408,10 +2229,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded'; + Get = 'Az.MySql.custom\Get-AzMySqlConnectionString'; + GetViaIdentity = 'Az.MySql.custom\Get-AzMySqlConnectionString'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Get') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2456,96 +2277,86 @@ end { <# .Synopsis -Creates or updates an existing virtual network rule. +Creates a new firewall rule or updates an existing firewall rule. .Description -Creates or updates an existing virtual network rule. +Creates a new firewall rule or updates an existing firewall rule. .Example -PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2" -PS C:\> Update-AzMySqlVirtualNetworkRule -Name $env.VNetName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -SubnetId $ID +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 -Name Type ----- ---- -vnet Microsoft.DBforMySQL/servers/virtualNetworkRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 .Example -PS C:\> $SubnetID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1" -PS C:\> $VNetID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/virtualNetworkRules/vnet" -PS C:\> Update-AzMySqlVirtualNetworkRule -InputObject $VNetID -SubnetId $SubnetID +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -StartIPAddress 0.0.0.1 -Name Type ----- ---- -vnet Microsoft.DBforMySQL/servers/virtualNetworkRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -AllowAll -.Inputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule -.Notes -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. +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 -INPUTOBJECT : Identity Parameter - [ConfigurationName ]: The name of the server configuration. - [DatabaseName ]: The name of the database. - [FirewallRuleName ]: The name of the server firewall rule. - [Id ]: Resource identity path - [LocationName ]: The name of the location. - [ResourceGroupName ]: The name of the resource group. The name is case insensitive. - [SecurityAlertPolicyName ]: The name of the security alert policy. - [ServerName ]: The name of the server. - [SubscriptionId ]: The ID of the target subscription. - [VirtualNetworkRuleName ]: The name of the virtual network rule. +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlvirtualnetworkrule +https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlfirewallrule #> -function Update-AzMySqlVirtualNetworkRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function New-AzMySqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] - [Alias('VirtualNetworkRuleName')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [System.String] - # The name of the virtual network rule. - ${Name}, - - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. ${ServerName}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter()] + [Alias('FirewallRuleName')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server firewall rule. + # If not specified, the default is undefined. + # If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. + ${Name}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + # If range contains one IP, use StartIPAddress only. + ${StartIPAddress}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The ARM resource id of the virtual network subnet. - ${SubnetId}, + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, - [Parameter()] + [Parameter(ParameterSetName='AllowAll', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.Management.Automation.SwitchParameter] - # Create firewall rule before the virtual network has vnet service endpoint enabled. - ${IgnoreMissingVnetServiceEndpoint}, + # Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + ${AllowAll}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -2587,12 +2398,6 @@ param( # Run the command asynchronously ${NoWait}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Uri] @@ -2621,10 +2426,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MySql.private\Update-AzMySqlVirtualNetworkRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded'; + CreateExpanded = 'Az.MySql.custom\New-AzMySqlFirewallRule'; + AllowAll = 'Az.MySql.custom\New-AzMySqlFirewallRule'; } - if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded', 'AllowAll') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2669,27 +2474,33 @@ end { <# .Synopsis -Get the connection string according to client connection provider. +Creates a new replica from an existing database. .Description -Get the connection string according to client connection provider. +Creates a new replica from an existing database. .Example -PS C:\> Get-AzMySqlConnectionString -Client ADO.NET -Name mysql-test -ResourceGroupName PowershellMySqlTest +PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlReplica -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest -Server=mysql-test.mysql.database.azure.com; Port=3306; Database={your_database}; Uid=mysql_test@mysql-test; Pwd={your_password}; +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Example -PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Get-AzMySqlConnectionString -Client PHP +PS C:\> $mysql = Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test +PS C:\> New-AzMySqlReplica -Master $mysql -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest -$con=mysqli_init(); mysqli_real_connect($con, "mysql-test.mysql.database.azure.com", "mysql_test@mysql-test", {your_password}, {your_database}, 3306); +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Outputs -System.String +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 : The source server object to create replica from. +MASTER : The source server object to create replica from. Location : The location the resource resides in. [Tag ]: Application-specific metadata in the form of key-value pairs. [(Any) ]: This indicates any property can be added to this object. @@ -2716,53 +2527,67 @@ INPUTOBJECT : The source server object to create replica from. [UserVisibleState ]: A state of a server that is visible to user. [Version ]: Server version. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlconnectionstring +https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlreplica #> -function Get-AzMySqlConnectionString { -[OutputType([System.String])] -[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] +function New-AzMySqlReplica { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] - [System.String] - # Client connection provider. - ${Client}, - - [Parameter(ParameterSetName='Get', Mandatory)] - [Alias('ServerName')] + [Alias('ReplicaServerName', 'Name')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. - ${Name}, + ${Replica}, - [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. ${ResourceGroupName}, - [Parameter(ParameterSetName='Get')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The subscription ID that identifies an Azure subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(Mandatory, ValueFromPipeline)] + [Alias('InputObject')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer] # The source server object to create replica from. - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, + # To construct, see NOTES section for MASTER properties and create a hash table. + ${Master}, [Parameter()] - [Alias('AzureRMContext', 'AzureCredential')] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Azure')] - [System.Management.Automation.PSObject] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The location the resource resides in. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The name of the sku, typically, tier + family + cores, e.g. + # B_Gen4_1, GP_Gen5_8. + ${Sku}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Azure')] + [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job. + ${AsJob}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] @@ -2781,6 +2606,12 @@ param( [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] ${HttpPipelinePrepend}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously. + ${NoWait}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Uri] @@ -2806,10 +2637,9 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - Get = 'Az.MySql.custom\Get-AzMySqlConnectionString'; - GetViaIdentity = 'Az.MySql.custom\Get-AzMySqlConnectionString'; + CreateExpanded = 'Az.MySql.custom\New-AzMySqlReplica'; } - if (('Get') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -2860,9 +2690,9 @@ Creates a new server. .Example PS C:\> New-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -Location eastus -AdministratorUser mysql_test -AdministratorLoginPassword $password -Sku GP_Gen5_4 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Outputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer @@ -3076,96 +2906,332 @@ end { <# .Synopsis -Creates a new replica from an existing database. +Restore a server from an existing backup .Description -Creates a new replica from an existing database. +Restore a server from an existing backup +.Example +PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test-replica | Restore-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -UseGeoRestore + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +.Example +PS C:\> $restorePointInTime = (Get-Date).AddMinutes(-10) +PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Restore-AzMySqlServer -Name mysql-test-restore -ResourceGroupName PowershellMySqlTest -RestorePointInTime $restorePointInTime -UsePointInTimeRestore + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer +.Notes +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 : The source server object to restore from. + Location : The location the resource resides in. + [Tag ]: Application-specific metadata in the form of key-value pairs. + [(Any) ]: This indicates any property can be added to this object. + [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). + [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) + [FullyQualifiedDomainName ]: The fully qualified domain name of a server. + [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. + [InfrastructureEncryption ]: Status showing whether the server enabled infrastructure encryption. + [MasterServerId ]: The master server id of a replica server. + [MinimalTlsVersion ]: Enforce a minimal Tls version for the server. + [PublicNetworkAccess ]: Whether or not public network access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' + [ReplicaCapacity ]: The maximum number of replicas that a master server can have. + [ReplicationRole ]: The replication role of the server. + [SkuCapacity ]: The scale up/out capacity, representing server's compute units. + [SkuFamily ]: The family of hardware. + [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. + [SkuSize ]: The size code, to be interpreted by resource as appropriate. + [SkuTier ]: The tier of the particular SKU, e.g. Basic. + [SslEnforcement ]: Enable ssl enforcement or not when connect to server. + [StorageProfileBackupRetentionDay ]: Backup retention days for the server. + [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. + [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. + [StorageProfileStorageMb ]: Max storage allowed for a server. + [UserVisibleState ]: A state of a server that is visible to user. + [Version ]: Server version. +.Link +https://docs.microsoft.com/en-us/powershell/module/az.mysql/restore-azmysqlserver +#> +function Restore-AzMySqlServer { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])] +[CmdletBinding(DefaultParameterSetName='GeoRestore', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('ServerName')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server. + ${Name}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The subscription ID that identifies an Azure subscription. + ${SubscriptionId}, + + [Parameter(Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer] + # The source server object to restore from. + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='GeoRestore', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Use Geo mode to restore + ${UseGeoRestore}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The location the resource resides in. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The name of the sku, typically, tier + family + cores, e.g. + # B_Gen4_1, GP_Gen5_8. + ${Sku}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerForCreateTags]))] + [System.Collections.Hashtable] + # Application-specific metadata in the form of key-value pairs. + ${Tag}, + + [Parameter(ParameterSetName='PointInTimeRestore', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.DateTime] + # The location the resource resides in. + ${RestorePointInTime}, + + [Parameter(ParameterSetName='PointInTimeRestore', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Use PointInTime mode to restore + ${UsePointInTimeRestore}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job. + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach. + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously. + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Uri] + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.PSCredential] + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + $mapping = @{ + GeoRestore = 'Az.MySql.custom\Restore-AzMySqlServer_GeoRestore'; + PointInTimeRestore = 'Az.MySql.custom\Restore-AzMySqlServer_PointInTimeRestore'; + } + if (('GeoRestore', 'PointInTimeRestore') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + throw + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} + +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. +.Description +Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. +.Example +PS C:\> Update-AzMySqlConfiguration -Name net_retry_count -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -Value 15 + +Name Value +---- ----- +net_retry_count 15 .Example -PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlServerReplica -Name mysql-test-replica -ResourceGroupName PowershellMySqlTest +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/configurations/wait_timeout" +PS C:\> Update-AzMySqlConfiguration -InputObject $ID -Value 150 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Value +---- ----- +wait_timeout 150 .Inputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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 : The source server object to create replica from. - Location : The location the resource resides in. - [Tag ]: Application-specific metadata in the form of key-value pairs. - [(Any) ]: This indicates any property can be added to this object. - [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). - [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) - [FullyQualifiedDomainName ]: The fully qualified domain name of a server. - [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. - [InfrastructureEncryption ]: Status showing whether the server enabled infrastructure encryption. - [MasterServerId ]: The master server id of a replica server. - [MinimalTlsVersion ]: Enforce a minimal Tls version for the server. - [PublicNetworkAccess ]: Whether or not public network access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' - [ReplicaCapacity ]: The maximum number of replicas that a master server can have. - [ReplicationRole ]: The replication role of the server. - [SkuCapacity ]: The scale up/out capacity, representing server's compute units. - [SkuFamily ]: The family of hardware. - [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. - [SkuSize ]: The size code, to be interpreted by resource as appropriate. - [SkuTier ]: The tier of the particular SKU, e.g. Basic. - [SslEnforcement ]: Enable ssl enforcement or not when connect to server. - [StorageProfileBackupRetentionDay ]: Backup retention days for the server. - [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. - [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. - [StorageProfileStorageMb ]: Max storage allowed for a server. - [UserVisibleState ]: A state of a server that is visible to user. - [Version ]: Server version. +INPUTOBJECT : Identity Parameter. + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The ID of the target subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlserverreplica +https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlconfiguration #> -function New-AzMySqlServerReplica { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Update-AzMySqlConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] - [Alias('ReplicaServerName')] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('ConfigurationName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the server. + # The name of the server configuration. ${Name}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. + # The name of the resource group. + # The name is case insensitive. ${ResourceGroupName}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The subscription ID that identifies an Azure subscription. + # The ID of the target subscription. ${SubscriptionId}, - [Parameter(Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer] - # The source server object to create replica from. + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] + # Identity Parameter. # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The location the resource resides in. - ${Location}, + # Source of the configuration. + ${Source}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The name of the sku, typically, tier + family + cores, e.g. - # B_Gen4_1, GP_Gen5_8. - ${Sku}, + # Value of the configuration. + ${Value}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -3178,13 +3244,12 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Run the command as a job. + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach. ${Break}, [Parameter(DontShow)] @@ -3202,7 +3267,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Run the command asynchronously. + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] @@ -3230,9 +3295,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - CreateExpanded = 'Az.MySql.custom\New-AzMySqlServerReplica'; + UpdateExpanded = 'Az.MySql.custom\Update-AzMySqlConfiguration'; + UpdateViaIdentityExpanded = 'Az.MySql.custom\Update-AzMySqlConfiguration'; } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -3277,128 +3343,105 @@ end { <# .Synopsis -Restore a server from an existing backup +Creates a new firewall rule or updates an existing firewall rule. .Description -Restore a server from an existing backup +Creates a new firewall rule or updates an existing firewall rule. .Example -PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test-replica | Restore-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -UseGeoRestore +PS C:\> Update-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 .Example -PS C:\> $restorePointInTime = (Get-Date).AddMinutes(-10) -PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Restore-AzMySqlServer -Name mysql-test-restore -ResourceGroupName PowershellMySqlTest -RestorePointInTime $restorePointInTime -UsePointInTimeRestore +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" +PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" +PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -StartIPAddress 0.0.0.2 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 .Inputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer +Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 : The source server object to restore from. - Location : The location the resource resides in. - [Tag ]: Application-specific metadata in the form of key-value pairs. - [(Any) ]: This indicates any property can be added to this object. - [AdministratorLogin ]: The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation). - [EarliestRestoreDate ]: Earliest restore point creation time (ISO8601 format) - [FullyQualifiedDomainName ]: The fully qualified domain name of a server. - [IdentityType ]: The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. - [InfrastructureEncryption ]: Status showing whether the server enabled infrastructure encryption. - [MasterServerId ]: The master server id of a replica server. - [MinimalTlsVersion ]: Enforce a minimal Tls version for the server. - [PublicNetworkAccess ]: Whether or not public network access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' - [ReplicaCapacity ]: The maximum number of replicas that a master server can have. - [ReplicationRole ]: The replication role of the server. - [SkuCapacity ]: The scale up/out capacity, representing server's compute units. - [SkuFamily ]: The family of hardware. - [SkuName ]: The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8. - [SkuSize ]: The size code, to be interpreted by resource as appropriate. - [SkuTier ]: The tier of the particular SKU, e.g. Basic. - [SslEnforcement ]: Enable ssl enforcement or not when connect to server. - [StorageProfileBackupRetentionDay ]: Backup retention days for the server. - [StorageProfileGeoRedundantBackup ]: Enable Geo-redundant or not for server backup. - [StorageProfileStorageAutogrow ]: Enable Storage Auto Grow. - [StorageProfileStorageMb ]: Max storage allowed for a server. - [UserVisibleState ]: A state of a server that is visible to user. - [Version ]: Server version. +INPUTOBJECT : Identity Parameter + [ConfigurationName ]: The name of the server configuration. + [DatabaseName ]: The name of the database. + [FirewallRuleName ]: The name of the server firewall rule. + [Id ]: Resource identity path + [LocationName ]: The name of the location. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [SecurityAlertPolicyName ]: The name of the security alert policy. + [ServerName ]: The name of the server. + [SubscriptionId ]: The ID of the target subscription. + [VirtualNetworkRuleName ]: The name of the virtual network rule. .Link -https://docs.microsoft.com/en-us/powershell/module/az.mysql/restore-azmysqlserver +https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlfirewallrule #> -function Restore-AzMySqlServer { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])] -[CmdletBinding(DefaultParameterSetName='GeoRestore', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Update-AzMySqlFirewallRule { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] - [Alias('ServerName')] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the server. + # The name of the server firewall rule. ${Name}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] - # The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. + # The name of the resource group. + # The name is case insensitive. ${ResourceGroupName}, - [Parameter()] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [System.String] + # The name of the server. + ${ServerName}, + + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] - # The subscription ID that identifies an Azure subscription. + # The ID of the target subscription. ${SubscriptionId}, - [Parameter(Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer] - # The source server object to restore from. + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] + # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(ParameterSetName='GeoRestore', Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Use Geo mode to restore - ${UseGeoRestore}, - - [Parameter()] + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The location the resource resides in. - ${Location}, + # The start IP address of the server firewall rule. + # Must be IPv4 format. + # If range contains one IP, use StartIPAddress only. + ${StartIPAddress}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The name of the sku, typically, tier + family + cores, e.g. - # B_Gen4_1, GP_Gen5_8. - ${Sku}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerForCreateTags]))] - [System.Collections.Hashtable] - # Application-specific metadata in the form of key-value pairs. - ${Tag}, - - [Parameter(ParameterSetName='PointInTimeRestore', Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.DateTime] - # The location the resource resides in. - ${RestorePointInTime}, - - [Parameter(ParameterSetName='PointInTimeRestore', Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Use PointInTime mode to restore - ${UsePointInTimeRestore}, + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -3411,47 +3454,52 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Run the command as a job. + # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach. + # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Run the command asynchronously. + # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Uri] + # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) @@ -3463,10 +3511,10 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - GeoRestore = 'Az.MySql.custom\Restore-AzMySqlServer_GeoRestore'; - PointInTimeRestore = 'Az.MySql.custom\Restore-AzMySqlServer_PointInTimeRestore'; + UpdateExpanded = 'Az.MySql.custom\Update-AzMySqlFirewallRule'; + UpdateViaIdentityExpanded = 'Az.MySql.custom\Update-AzMySqlFirewallRule'; } - if (('GeoRestore', 'PointInTimeRestore') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -3513,21 +3561,23 @@ end { .Synopsis Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Description Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Example PS C:\> Update-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -SslEnforcement Disabled -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Update-AzMySqlServer -BackupRetentionDay 23 -StorageMb 10240 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity @@ -3535,6 +3585,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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. @@ -3614,12 +3665,6 @@ param( # B_Gen4_1, GP_Gen5_8. ${Sku}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - # The size code, to be interpreted by resource as appropriate. - ${SkuSize}, - [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier])] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] diff --git a/src/MySql/exports/Remove-AzMySqlFirewallRule.ps1 b/src/MySql/exports/Remove-AzMySqlFirewallRule.ps1 index 277479dee5cc..2d2d8ec61fad 100644 --- a/src/MySql/exports/Remove-AzMySqlFirewallRule.ps1 +++ b/src/MySql/exports/Remove-AzMySqlFirewallRule.ps1 @@ -32,6 +32,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 diff --git a/src/MySql/exports/Remove-AzMySqlServer.ps1 b/src/MySql/exports/Remove-AzMySqlServer.ps1 index 9e2c802d823f..fe112c3c0d0a 100644 --- a/src/MySql/exports/Remove-AzMySqlServer.ps1 +++ b/src/MySql/exports/Remove-AzMySqlServer.ps1 @@ -32,6 +32,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 diff --git a/src/MySql/exports/Remove-AzMySqlVirtualNetworkRule.ps1 b/src/MySql/exports/Remove-AzMySqlVirtualNetworkRule.ps1 index 337b1ede80b1..ed2472cc9836 100644 --- a/src/MySql/exports/Remove-AzMySqlVirtualNetworkRule.ps1 +++ b/src/MySql/exports/Remove-AzMySqlVirtualNetworkRule.ps1 @@ -32,6 +32,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 diff --git a/src/MySql/exports/Restart-AzMySqlServer.ps1 b/src/MySql/exports/Restart-AzMySqlServer.ps1 index 4a0126923cac..d5353ac2672e 100644 --- a/src/MySql/exports/Restart-AzMySqlServer.ps1 +++ b/src/MySql/exports/Restart-AzMySqlServer.ps1 @@ -32,6 +32,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 diff --git a/src/MySql/exports/Restore-AzMySqlServer.ps1 b/src/MySql/exports/Restore-AzMySqlServer.ps1 index b772c788301e..52c2176ee2da 100644 --- a/src/MySql/exports/Restore-AzMySqlServer.ps1 +++ b/src/MySql/exports/Restore-AzMySqlServer.ps1 @@ -21,16 +21,16 @@ Restore a server from an existing backup .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test-replica | Restore-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -UseGeoRestore -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Example PS C:\> $restorePointInTime = (Get-Date).AddMinutes(-10) PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Restore-AzMySqlServer -Name mysql-test-restore -ResourceGroupName PowershellMySqlTest -RestorePointInTime $restorePointInTime -UsePointInTimeRestore -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer @@ -38,6 +38,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 : The source server object to restore from. diff --git a/src/MySql/exports/Update-AzMySqlConfiguration.ps1 b/src/MySql/exports/Update-AzMySqlConfiguration.ps1 index 1d846946d4e5..1d542216b768 100644 --- a/src/MySql/exports/Update-AzMySqlConfiguration.ps1 +++ b/src/MySql/exports/Update-AzMySqlConfiguration.ps1 @@ -16,8 +16,10 @@ <# .Synopsis Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. .Description Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. .Example PS C:\> Update-AzMySqlConfiguration -Name net_retry_count -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -Value 15 @@ -38,9 +40,10 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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. [ConfigurationName ]: The name of the server configuration. [DatabaseName ]: The name of the database. [FirewallRuleName ]: The name of the server firewall rule. @@ -88,7 +91,7 @@ param( [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] - # Identity Parameter + # Identity Parameter. # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, @@ -121,21 +124,18 @@ param( [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] @@ -147,20 +147,17 @@ param( [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Uri] - # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Runtime')] [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) @@ -172,8 +169,8 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.MySql.custom\Update-AzMySqlConfiguration'; + UpdateViaIdentityExpanded = 'Az.MySql.custom\Update-AzMySqlConfiguration'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id diff --git a/src/MySql/exports/Update-AzMySqlFirewallRule.ps1 b/src/MySql/exports/Update-AzMySqlFirewallRule.ps1 index 869adbff1a12..66cba41f02be 100644 --- a/src/MySql/exports/Update-AzMySqlFirewallRule.ps1 +++ b/src/MySql/exports/Update-AzMySqlFirewallRule.ps1 @@ -28,6 +28,13 @@ rule 0.0.0.2 0.0.0.3 PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" +PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -StartIPAddress 0.0.0.2 + Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.2 0.0.0.3 @@ -38,6 +45,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 @@ -95,16 +103,17 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The end IP address of the server firewall rule. + # The start IP address of the server firewall rule. # Must be IPv4 format. - ${EndIPAddress}, + # If range contains one IP, use StartIPAddress only. + ${StartIPAddress}, - [Parameter(Mandatory)] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] - # The start IP address of the server firewall rule. + # The end IP address of the server firewall rule. # Must be IPv4 format. - ${StartIPAddress}, + ${EndIPAddress}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -174,8 +183,8 @@ begin { } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - UpdateExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateExpanded'; - UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded'; + UpdateExpanded = 'Az.MySql.custom\Update-AzMySqlFirewallRule'; + UpdateViaIdentityExpanded = 'Az.MySql.custom\Update-AzMySqlFirewallRule'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id diff --git a/src/MySql/exports/Update-AzMySqlServer.ps1 b/src/MySql/exports/Update-AzMySqlServer.ps1 index 388e49844859..5d025a987f8f 100644 --- a/src/MySql/exports/Update-AzMySqlServer.ps1 +++ b/src/MySql/exports/Update-AzMySqlServer.ps1 @@ -17,21 +17,23 @@ .Synopsis Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Description Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. .Example PS C:\> Update-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -SslEnforcement Disabled -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Update-AzMySqlServer -BackupRetentionDay 23 -StorageMb 10240 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity @@ -39,6 +41,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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. @@ -118,12 +121,6 @@ param( # B_Gen4_1, GP_Gen5_8. ${Sku}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] - [System.String] - # The size code, to be interpreted by resource as appropriate. - ${SkuSize}, - [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier])] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] diff --git a/src/MySql/exports/Update-AzMySqlVirtualNetworkRule.ps1 b/src/MySql/exports/Update-AzMySqlVirtualNetworkRule.ps1 index e5aaa445f4e5..6d6042b63433 100644 --- a/src/MySql/exports/Update-AzMySqlVirtualNetworkRule.ps1 +++ b/src/MySql/exports/Update-AzMySqlVirtualNetworkRule.ps1 @@ -40,6 +40,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 diff --git a/src/MySql/exports/readme.md b/src/MySql/exports/readme.md index 0e8e41bcb2bd..26775efe51f5 100644 --- a/src/MySql/exports/readme.md +++ b/src/MySql/exports/readme.md @@ -1,5 +1,5 @@ # Exports -This directory contains the cmdlets *exported by* `Az.MySql`. No other cmdlets in this repository are directly exported. What that means is the `Az.MySql` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `../custom` for all custom implementation. +This directory contains the cmdlets *exported by* `Az.MySql`. No other cmdlets in this repository are directly exported. What that means is the `Az.MySql` module will run [Export-ModuleMember](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. ## Info - Modifiable: no @@ -8,7 +8,7 @@ This directory contains the cmdlets *exported by* `Az.MySql`. No other cmdlets i - Packaged: yes ## Details -The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`../bin/Az.MySql.private.dll`) and from the `../custom/Az.MySql.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](../internal/readme.md) in the `../internal` folder. +The cmdlets generated here are created every time you run `build-module.ps1`. These cmdlets are a merge of all (excluding `InternalExport`) cmdlets from the private binary (`..\bin\Az.MySql.private.dll`) and from the `..\custom\Az.MySql.custom.psm1` module. Cmdlets that are *not merged* from those directories are decorated with the `InternalExport` attribute. This happens when you set the cmdlet to **hide** from configuration. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) or the [readme.md](..\internal/readme.md) in the `..\internal` folder. ## Purpose We generate script cmdlets out of the binary cmdlets and custom cmdlets. The format of script cmdlets are simplistic; thus, easier to generate at build time. Generating the cmdlets is required as to allow merging of generated binary, hand-written binary, and hand-written custom cmdlets. For Azure cmdlets, having script cmdlets simplifies the mechanism for exporting Azure profiles. diff --git a/src/MySql/generated/api/Models/Api20171201/Server.cs b/src/MySql/generated/api/Models/Api20171201/Server.cs index 878803e8d2c5..48e532e9fa57 100644 --- a/src/MySql/generated/api/Models/Api20171201/Server.cs +++ b/src/MySql/generated/api/Models/Api20171201/Server.cs @@ -188,17 +188,17 @@ public partial class Server : /// The size code, to be interpreted by resource as appropriate. [Microsoft.Azure.PowerShell.Cmdlets.MySql.Origin(Microsoft.Azure.PowerShell.Cmdlets.MySql.PropertyOrigin.Inlined)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.FormatTable(Index = 6)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.DoNotFormat] public string SkuSize { get => ((Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.ISkuInternal)Sku).Size; set => ((Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.ISkuInternal)Sku).Size = value; } /// The tier of the particular SKU, e.g. Basic. [Microsoft.Azure.PowerShell.Cmdlets.MySql.Origin(Microsoft.Azure.PowerShell.Cmdlets.MySql.PropertyOrigin.Inlined)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.FormatTable(Index = 7)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.FormatTable(Index = 6)] public Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier? SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.ISkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.ISkuInternal)Sku).Tier = value; } /// Enable ssl enforcement or not when connect to server. [Microsoft.Azure.PowerShell.Cmdlets.MySql.Origin(Microsoft.Azure.PowerShell.Cmdlets.MySql.PropertyOrigin.Inlined)] - [Microsoft.Azure.PowerShell.Cmdlets.MySql.FormatTable(Index = 8)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.FormatTable(Index = 7)] public Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum? SslEnforcement { get => ((Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPropertiesInternal)Property).SslEnforcement; set => ((Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerPropertiesInternal)Property).SslEnforcement = value; } /// Backup retention days for the server. diff --git a/src/MySql/generated/api/Support/InfrastructureEncryption.cs b/src/MySql/generated/api/Support/InfrastructureEncryption.cs index 2721f29e7824..c4e2d7ec09af 100644 --- a/src/MySql/generated/api/Support/InfrastructureEncryption.cs +++ b/src/MySql/generated/api/Support/InfrastructureEncryption.cs @@ -9,8 +9,10 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MySql.Support public partial struct InfrastructureEncryption : System.IEquatable { + /// Additional (2nd) layer of encryption for data at rest public static Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption Disabled = @"Disabled"; + /// Default value for single layer of encryption for data at rest. public static Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.InfrastructureEncryption Enabled = @"Enabled"; /// the value for an instance of the Enum. diff --git a/src/MySql/generated/cmdlets/NewAzMySqlFirewallRule_CreateExpanded.cs b/src/MySql/generated/cmdlets/NewAzMySqlFirewallRule_CreateExpanded.cs index b4986f583bd0..8e4bea0073d9 100644 --- a/src/MySql/generated/cmdlets/NewAzMySqlFirewallRule_CreateExpanded.cs +++ b/src/MySql/generated/cmdlets/NewAzMySqlFirewallRule_CreateExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MySql.Cmdlets /// /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzMySqlFirewallRule_CreateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateExpanded.cs b/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateExpanded.cs index 8c595ea4c0d3..4346a6daabab 100644 --- a/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateExpanded.cs +++ b/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MySql.Cmdlets /// /// [OpenAPI] Configurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations/{configurationName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMySqlConfiguration_UpdateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.Description(@"Updates a configuration of a server.")] diff --git a/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateViaIdentityExpanded.cs b/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateViaIdentityExpanded.cs index 51e326e79b1c..41d919fcbca9 100644 --- a/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateViaIdentityExpanded.cs +++ b/src/MySql/generated/cmdlets/UpdateAzMySqlConfiguration_UpdateViaIdentityExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MySql.Cmdlets /// /// [OpenAPI] Configurations_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations/{configurationName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMySqlConfiguration_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration))] [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.Description(@"Updates a configuration of a server.")] diff --git a/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateExpanded.cs b/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateExpanded.cs index 3ad3bddd44d4..cad90538f7b7 100644 --- a/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateExpanded.cs +++ b/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MySql.Cmdlets /// /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMySqlFirewallRule_UpdateExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateViaIdentityExpanded.cs b/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateViaIdentityExpanded.cs index 7a5b3eceadee..346aeae1d524 100644 --- a/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateViaIdentityExpanded.cs +++ b/src/MySql/generated/cmdlets/UpdateAzMySqlFirewallRule_UpdateViaIdentityExpanded.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.MySql.Cmdlets /// /// [OpenAPI] FirewallRules_CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/firewallRules/{firewallRuleName}" /// + [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzMySqlFirewallRule_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.MySql.Description(@"Creates a new firewall rule or updates an existing firewall rule.")] diff --git a/src/MySql/generated/runtime/BuildTime/Models/PsProxyOutputs.cs b/src/MySql/generated/runtime/BuildTime/Models/PsProxyOutputs.cs index d72b85dec975..add31866c271 100644 --- a/src/MySql/generated/runtime/BuildTime/Models/PsProxyOutputs.cs +++ b/src/MySql/generated/runtime/BuildTime/Models/PsProxyOutputs.cs @@ -415,7 +415,7 @@ internal static class PsProxyOutputExtensions public const string ItemSeparator = ", "; - public static readonly string ComplexParameterHeader = $"COMPLEX PARAMETER PROPERTIES{Environment.NewLine}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.{Environment.NewLine}{Environment.NewLine}"; + public static readonly string ComplexParameterHeader = $"COMPLEX PARAMETER PROPERTIES{Environment.NewLine}{Environment.NewLine}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.{Environment.NewLine}{Environment.NewLine}"; public static string ToPsBool(this bool value) => $"${value.ToString().ToLowerInvariant()}"; diff --git a/src/MySql/generated/runtime/HttpPipeline.cs b/src/MySql/generated/runtime/HttpPipeline.cs index 3251eaec15ad..0b373523c2c3 100644 --- a/src/MySql/generated/runtime/HttpPipeline.cs +++ b/src/MySql/generated/runtime/HttpPipeline.cs @@ -47,7 +47,7 @@ public partial class SendAsyncFactory { /// /// This translates a generic-defined delegate for a listener into one that fits our ISendAsync pattern. - /// (Provided to support out-of-module delgation for Azure Cmdlets) + /// (Provided to support out-of-module delegation for Azure Cmdlets) /// /// The Pipeline Step as a delegate public SendAsyncFactory(SendAsyncStepDelegate step) => this.implementation = (request, listener, next) => @@ -85,4 +85,4 @@ public HttpPipeline Prepend(SendAsyncStepDelegate item) return this; } } -} \ No newline at end of file +} diff --git a/src/MySql/help/Az.MySql.md b/src/MySql/help/Az.MySql.md index d05b93b0950f..0aaaaba80eb9 100644 --- a/src/MySql/help/Az.MySql.md +++ b/src/MySql/help/Az.MySql.md @@ -1,6 +1,6 @@ --- Module Name: Az.MySql -Module Guid: 43b3698e-9955-4090-9969-7b5a71479c75 +Module Guid: 8c7c6fcd-a96f-460b-89e2-ff822a3246c8 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.mysql Help Version: 1.0.0.0 Locale: en-US @@ -32,12 +32,12 @@ Gets a virtual network rule. ### [New-AzMySqlFirewallRule](New-AzMySqlFirewallRule.md) Creates a new firewall rule or updates an existing firewall rule. +### [New-AzMySqlReplica](New-AzMySqlReplica.md) +Creates a new replica from an existing database. + ### [New-AzMySqlServer](New-AzMySqlServer.md) Creates a new server. -### [New-AzMySqlServerReplica](New-AzMySqlServerReplica.md) -Creates a new replica from an existing database. - ### [New-AzMySqlVirtualNetworkRule](New-AzMySqlVirtualNetworkRule.md) Creates or updates an existing virtual network rule. @@ -58,6 +58,7 @@ Restore a server from an existing backup ### [Update-AzMySqlConfiguration](Update-AzMySqlConfiguration.md) Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. ### [Update-AzMySqlFirewallRule](Update-AzMySqlFirewallRule.md) Creates a new firewall rule or updates an existing firewall rule. @@ -65,6 +66,7 @@ Creates a new firewall rule or updates an existing firewall rule. ### [Update-AzMySqlServer](Update-AzMySqlServer.md) Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ### [Update-AzMySqlVirtualNetworkRule](Update-AzMySqlVirtualNetworkRule.md) Creates or updates an existing virtual network rule. diff --git a/src/MySql/help/Get-AzMySqlConfiguration.md b/src/MySql/help/Get-AzMySqlConfiguration.md index e0ab5414c8d4..50efb1f5315f 100644 --- a/src/MySql/help/Get-AzMySqlConfiguration.md +++ b/src/MySql/help/Get-AzMySqlConfiguration.md @@ -174,6 +174,7 @@ 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/MySql/help/Get-AzMySqlConnectionString.md b/src/MySql/help/Get-AzMySqlConnectionString.md index 27c17b47ebcd..2a91f055d2ae 100644 --- a/src/MySql/help/Get-AzMySqlConnectionString.md +++ b/src/MySql/help/Get-AzMySqlConnectionString.md @@ -156,6 +156,7 @@ 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/MySql/help/Get-AzMySqlFirewallRule.md b/src/MySql/help/Get-AzMySqlFirewallRule.md index 8fb4e98b7e8b..02a7cf376106 100644 --- a/src/MySql/help/Get-AzMySqlFirewallRule.md +++ b/src/MySql/help/Get-AzMySqlFirewallRule.md @@ -178,6 +178,7 @@ 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/MySql/help/Get-AzMySqlReplica.md b/src/MySql/help/Get-AzMySqlReplica.md index 6f4aac4cc1ac..26fc74aff2c8 100644 --- a/src/MySql/help/Get-AzMySqlReplica.md +++ b/src/MySql/help/Get-AzMySqlReplica.md @@ -26,9 +26,9 @@ List all the replicas for a given server. ```powershell PS C:\> Get-AzMySqlReplica -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet gets MySql server replica by resource group and server name. diff --git a/src/MySql/help/Get-AzMySqlServer.md b/src/MySql/help/Get-AzMySqlServer.md index e6591422e302..2858d27dc39f 100644 --- a/src/MySql/help/Get-AzMySqlServer.md +++ b/src/MySql/help/Get-AzMySqlServer.md @@ -43,9 +43,9 @@ Gets information about a server. ```powershell PS C:\> Get-AzMySqlServer -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet gets MySql server with default context. @@ -54,9 +54,9 @@ This cmdlet gets MySql server with default context. ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name mysql-test -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet gets MySql server by resource group and server name. @@ -65,9 +65,9 @@ This cmdlet gets MySql server by resource group and server name. ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet lists all the MySql servers in specified resource group. @@ -77,9 +77,9 @@ This cmdlet lists all the MySql servers in specified resource group. PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test" PS C:\> Get-AzMySqlServer -InputObject $ID -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` This cmdlet lists gets MySql server by identity. @@ -179,6 +179,7 @@ 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/MySql/help/Get-AzMySqlVirtualNetworkRule.md b/src/MySql/help/Get-AzMySqlVirtualNetworkRule.md index 3c4b7aac3fcb..1ec1563c6c33 100644 --- a/src/MySql/help/Get-AzMySqlVirtualNetworkRule.md +++ b/src/MySql/help/Get-AzMySqlVirtualNetworkRule.md @@ -194,6 +194,7 @@ 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/MySql/help/New-AzMySqlFirewallRule.md b/src/MySql/help/New-AzMySqlFirewallRule.md index cf8739f5f358..4c9205e54af4 100644 --- a/src/MySql/help/New-AzMySqlFirewallRule.md +++ b/src/MySql/help/New-AzMySqlFirewallRule.md @@ -12,10 +12,18 @@ Creates a new firewall rule or updates an existing firewall rule. ## SYNTAX +### CreateExpanded (Default) ``` -New-AzMySqlFirewallRule -Name -ResourceGroupName -ServerName -EndIPAddress - -StartIPAddress [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] - [-Confirm] [-WhatIf] [] +New-AzMySqlFirewallRule -ResourceGroupName -ServerName -StartIPAddress + [-Name ] [-SubscriptionId ] [-EndIPAddress ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### AllowAll +``` +New-AzMySqlFirewallRule -ResourceGroupName -ServerName -AllowAll [-Name ] + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ## DESCRIPTION @@ -27,15 +35,52 @@ Creates a new firewall rule or updates an existing firewall rule. ```powershell PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 -Name Type ----- ---- -rule Microsoft.DBforMySQL/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 ``` This cmdlets create a MySql server Firewall Rule. +### Example 2: Create a new MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized +```powershell +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -StartIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.1 0.0.0.1 +``` + +This cmdlets create a MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized. + +### Example 3: Create a new MySql Firewall Rule to allow all IPs +```powershell +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 +``` + +This cmdlets create a new MySql Firewall Rule to allow all IPs. + ## PARAMETERS +### -AllowAll +Present to allow all range IPs, from 0.0.0.0 to 255.255.255.255. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: AllowAll +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AsJob Run the command as a job @@ -72,10 +117,10 @@ Must be IPv4 format. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -84,13 +129,15 @@ Accept wildcard characters: False ### -Name The name of the server firewall rule. +If not specified, the default is undefined. +If AllowAll is present, the default name is AllowAll_yyyy-MM-dd_HH-mm-ss. ```yaml Type: System.String Parameter Sets: (All) Aliases: FirewallRuleName -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -146,10 +193,11 @@ Accept wildcard characters: False ### -StartIPAddress The start IP address of the server firewall rule. Must be IPv4 format. +If range contains one IP, use StartIPAddress only. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: True diff --git a/src/MySql/help/New-AzMySqlServerReplica.md b/src/MySql/help/New-AzMySqlReplica.md similarity index 82% rename from src/MySql/help/New-AzMySqlServerReplica.md rename to src/MySql/help/New-AzMySqlReplica.md index 7bd3a4959c69..d3c68d7b46d0 100644 --- a/src/MySql/help/New-AzMySqlServerReplica.md +++ b/src/MySql/help/New-AzMySqlReplica.md @@ -1,11 +1,11 @@ --- external help file: Module Name: Az.MySql -online version: https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlserverreplica +online version: https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlreplica schema: 2.0.0 --- -# New-AzMySqlServerReplica +# New-AzMySqlReplica ## SYNOPSIS Creates a new replica from an existing database. @@ -13,9 +13,9 @@ Creates a new replica from an existing database. ## SYNTAX ``` -New-AzMySqlServerReplica -Name -ResourceGroupName -InputObject - [-SubscriptionId ] [-Location ] [-Sku ] [-DefaultProfile ] [-AsJob] - [-NoWait] [-Confirm] [-WhatIf] [] +New-AzMySqlReplica -Replica -ResourceGroupName -Master [-SubscriptionId ] + [-Location ] [-Sku ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ## DESCRIPTION @@ -25,15 +25,27 @@ Creates a new replica from an existing database. ### Example 1: Create a new MySql server replica ```powershell -PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlServerReplica -Name mysql-test-replica -ResourceGroupName PowershellMySqlTest +PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | New-AzMySqlReplica -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet creates a new MySql server replica. +### Example 2: Create a new MySql server replica +```powershell +PS C:\> $mysql = Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test +PS C:\> New-AzMySqlReplica -Master $mysql -Replica mysql-test-replica -ResourceGroupName PowershellMySqlTest + +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-replica eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +``` + +This cmdlet with parameter master(inputobject) creates a new MySql server replica. + ## PARAMETERS ### -AsJob @@ -66,22 +78,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -The source server object to create replica from. -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - ### -Location The location the resource resides in. @@ -97,18 +93,19 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Name -The name of the server. +### -Master +The source server object to create replica from. +To construct, see NOTES section for MASTER properties and create a hash table. ```yaml -Type: System.String +Type: Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer Parameter Sets: (All) -Aliases: ReplicaServerName +Aliases: InputObject Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -127,6 +124,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Replica +The name of the server. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: ReplicaServerName, Name + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group that contains the resource, You can obtain this value from the Azure Resource Manager API or the portal. @@ -220,10 +232,11 @@ 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. -INPUTOBJECT : The source server object to create replica from. +MASTER : The source server object to create replica from. - `Location `: The location the resource resides in. - `[Tag ]`: Application-specific metadata in the form of key-value pairs. - `[(Any) ]`: This indicates any property can be added to this object. diff --git a/src/MySql/help/New-AzMySqlServer.md b/src/MySql/help/New-AzMySqlServer.md index 9b9b40cc90f1..551d9b624ac1 100644 --- a/src/MySql/help/New-AzMySqlServer.md +++ b/src/MySql/help/New-AzMySqlServer.md @@ -30,9 +30,9 @@ Creates a new server. ```powershell PS C:\> New-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -Location eastus -AdministratorUser mysql_test -AdministratorLoginPassword $password -Sku GP_Gen5_4 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled ``` These cmdlets create a new MySql server. diff --git a/src/MySql/help/Remove-AzMySqlFirewallRule.md b/src/MySql/help/Remove-AzMySqlFirewallRule.md index c8f419970329..8b0940bf0560 100644 --- a/src/MySql/help/Remove-AzMySqlFirewallRule.md +++ b/src/MySql/help/Remove-AzMySqlFirewallRule.md @@ -233,6 +233,7 @@ 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/MySql/help/Remove-AzMySqlServer.md b/src/MySql/help/Remove-AzMySqlServer.md index 61a150c38e6b..fbf7d517afa1 100644 --- a/src/MySql/help/Remove-AzMySqlServer.md +++ b/src/MySql/help/Remove-AzMySqlServer.md @@ -217,6 +217,7 @@ 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/MySql/help/Remove-AzMySqlVirtualNetworkRule.md b/src/MySql/help/Remove-AzMySqlVirtualNetworkRule.md index 207046ba37e5..91b5ec97f8b8 100644 --- a/src/MySql/help/Remove-AzMySqlVirtualNetworkRule.md +++ b/src/MySql/help/Remove-AzMySqlVirtualNetworkRule.md @@ -233,6 +233,7 @@ 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/MySql/help/Restart-AzMySqlServer.md b/src/MySql/help/Restart-AzMySqlServer.md index 6e95764947b0..f194edec1de0 100644 --- a/src/MySql/help/Restart-AzMySqlServer.md +++ b/src/MySql/help/Restart-AzMySqlServer.md @@ -217,6 +217,7 @@ 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/MySql/help/Restore-AzMySqlServer.md b/src/MySql/help/Restore-AzMySqlServer.md index e96738cbd434..c2f21f5f2f55 100644 --- a/src/MySql/help/Restore-AzMySqlServer.md +++ b/src/MySql/help/Restore-AzMySqlServer.md @@ -36,9 +36,9 @@ Restore a server from an existing backup ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test-replica | Restore-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -UseGeoRestore -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-11 eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet restores MySql server using GeoReplica Restore. @@ -48,9 +48,9 @@ This cmdlet restores MySql server using GeoReplica Restore. PS C:\> $restorePointInTime = (Get-Date).AddMinutes(-10) PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Restore-AzMySqlServer -Name mysql-test-restore -ResourceGroupName PowershellMySqlTest -RestorePointInTime $restorePointInTime -UsePointInTimeRestore -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test-restore eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` These cmdlets restore MySql server using PointInTime Restore. @@ -301,6 +301,7 @@ 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/MySql/help/Update-AzMySqlConfiguration.md b/src/MySql/help/Update-AzMySqlConfiguration.md index 005394230347..3a5d7fd00c2b 100644 --- a/src/MySql/help/Update-AzMySqlConfiguration.md +++ b/src/MySql/help/Update-AzMySqlConfiguration.md @@ -9,6 +9,7 @@ schema: 2.0.0 ## SYNOPSIS Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. ## SYNTAX @@ -27,6 +28,7 @@ Update-AzMySqlConfiguration -InputObject [-Source ] [-V ## DESCRIPTION Updates a configuration of a server. +Use Update-AzMySqlServer instead if you want update AdministratorLoginPassword, sku, etc. ## EXAMPLES @@ -86,7 +88,7 @@ Accept wildcard characters: False ``` ### -InputObject -Identity Parameter +Identity Parameter. To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml @@ -254,10 +256,11 @@ 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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT : Identity Parameter. - `[ConfigurationName ]`: The name of the server configuration. - `[DatabaseName ]`: The name of the database. - `[FirewallRuleName ]`: The name of the server firewall rule. diff --git a/src/MySql/help/Update-AzMySqlFirewallRule.md b/src/MySql/help/Update-AzMySqlFirewallRule.md index 9dd7a480d7c9..07b8971e92de 100644 --- a/src/MySql/help/Update-AzMySqlFirewallRule.md +++ b/src/MySql/help/Update-AzMySqlFirewallRule.md @@ -15,13 +15,13 @@ Creates a new firewall rule or updates an existing firewall rule. ### UpdateExpanded (Default) ``` Update-AzMySqlFirewallRule -Name -ResourceGroupName -ServerName - -EndIPAddress -StartIPAddress [-SubscriptionId ] [-DefaultProfile ] + -StartIPAddress [-SubscriptionId ] [-EndIPAddress ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### UpdateViaIdentityExpanded ``` -Update-AzMySqlFirewallRule -InputObject -EndIPAddress -StartIPAddress +Update-AzMySqlFirewallRule -InputObject -StartIPAddress [-EndIPAddress ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` @@ -53,6 +53,18 @@ rule 0.0.0.2 0.0.0.3 These cmdlets update MySql Firewall Rule by identity. +### Example 3: Update MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized +```powershell +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" +PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -StartIPAddress 0.0.0.2 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 +``` + +These cmdlets update MySql Firewall Rule use only one parameter StartIPAddress when only one IP needs to be authorized. + ## PARAMETERS ### -AsJob @@ -94,7 +106,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -181,6 +193,7 @@ Accept wildcard characters: False ### -StartIPAddress The start IP address of the server firewall rule. Must be IPv4 format. +If range contains one IP, use StartIPAddress only. ```yaml Type: System.String @@ -256,6 +269,7 @@ 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/MySql/help/Update-AzMySqlServer.md b/src/MySql/help/Update-AzMySqlServer.md index 3e0d86f01a3b..31a878f86612 100644 --- a/src/MySql/help/Update-AzMySqlServer.md +++ b/src/MySql/help/Update-AzMySqlServer.md @@ -10,6 +10,7 @@ schema: 2.0.0 ## SYNOPSIS Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ## SYNTAX @@ -17,7 +18,7 @@ The request body can contain one to many of the properties present in the normal ``` Update-AzMySqlServer -Name -ResourceGroupName [-SubscriptionId ] [-AdministratorLoginPassword ] [-BackupRetentionDay ] [-ReplicationRole ] - [-Sku ] [-SkuCapacity ] [-SkuFamily ] [-SkuSize ] [-SkuTier ] + [-Sku ] [-SkuCapacity ] [-SkuFamily ] [-SkuTier ] [-SslEnforcement ] [-StorageAutogrow ] [-StorageInMb ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` @@ -26,7 +27,7 @@ Update-AzMySqlServer -Name -ResourceGroupName [-SubscriptionId ``` Update-AzMySqlServer -InputObject [-AdministratorLoginPassword ] [-BackupRetentionDay ] [-ReplicationRole ] [-Sku ] [-SkuCapacity ] - [-SkuFamily ] [-SkuSize ] [-SkuTier ] [-SslEnforcement ] + [-SkuFamily ] [-SkuTier ] [-SslEnforcement ] [-StorageAutogrow ] [-StorageInMb ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` @@ -34,6 +35,7 @@ Update-AzMySqlServer -InputObject [-AdministratorLoginPassword ## DESCRIPTION Updates an existing server. The request body can contain one to many of the properties present in the normal server definition. +Use Update-AzMySqlConfiguration instead if you want update server parameters such as wait_timeout or net_retry_count. ## EXAMPLES @@ -41,9 +43,9 @@ The request body can contain one to many of the properties present in the normal ```powershell PS C:\> Update-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -SslEnforcement Disabled -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet updates MySql server by resource group and server name. @@ -52,9 +54,9 @@ This cmdlet updates MySql server by resource group and server name. ```powershell PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Update-AzMySqlServer -BackupRetentionDay 23 -StorageMb 10240 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled ``` This cmdlet updates MySql server by identity. @@ -245,21 +247,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -SkuSize -The size code, to be interpreted by resource as appropriate. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -SkuTier The tier of the particular SKU, e.g. Basic. @@ -398,6 +385,7 @@ 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/MySql/help/Update-AzMySqlVirtualNetworkRule.md b/src/MySql/help/Update-AzMySqlVirtualNetworkRule.md index fee2d9bc97d2..1a0be2260199 100644 --- a/src/MySql/help/Update-AzMySqlVirtualNetworkRule.md +++ b/src/MySql/help/Update-AzMySqlVirtualNetworkRule.md @@ -272,6 +272,7 @@ 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/MySql/internal/Az.MySql.internal.psm1 b/src/MySql/internal/Az.MySql.internal.psm1 index 3ff7216b0161..c08051940edb 100644 --- a/src/MySql/internal/Az.MySql.internal.psm1 +++ b/src/MySql/internal/Az.MySql.internal.psm1 @@ -1,6 +1,6 @@ # region Generated # Load the private module dll - $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '../bin/Az.MySql.private.dll') + $null = Import-Module -PassThru -Name (Join-Path $PSScriptRoot '..\bin\Az.MySql.private.dll') # Get the private module's instance $instance = [Microsoft.Azure.PowerShell.Cmdlets.MySql.Module]::Instance diff --git a/src/MySql/internal/Get-AzMySqlDatabase.ps1 b/src/MySql/internal/Get-AzMySqlDatabase.ps1 index 4234ee7ce1db..22296d221185 100644 --- a/src/MySql/internal/Get-AzMySqlDatabase.ps1 +++ b/src/MySql/internal/Get-AzMySqlDatabase.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase .Notes 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 diff --git a/src/MySql/internal/Get-AzMySqlServerAdministrator.ps1 b/src/MySql/internal/Get-AzMySqlServerAdministrator.ps1 index 56fbddf895f8..74f5a87976be 100644 --- a/src/MySql/internal/Get-AzMySqlServerAdministrator.ps1 +++ b/src/MySql/internal/Get-AzMySqlServerAdministrator.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministratorResource .Notes 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 diff --git a/src/MySql/internal/Get-AzMySqlServerSecurityAlertPolicy.ps1 b/src/MySql/internal/Get-AzMySqlServerSecurityAlertPolicy.ps1 index 75cf1c3c9261..9ec4d77a8350 100644 --- a/src/MySql/internal/Get-AzMySqlServerSecurityAlertPolicy.ps1 +++ b/src/MySql/internal/Get-AzMySqlServerSecurityAlertPolicy.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlertPolicy .Notes 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 diff --git a/src/MySql/internal/Invoke-AzMySqlExecuteCheckNameAvailability.ps1 b/src/MySql/internal/Invoke-AzMySqlExecuteCheckNameAvailability.ps1 index 77947e0d5db1..ed83ed05a522 100644 --- a/src/MySql/internal/Invoke-AzMySqlExecuteCheckNameAvailability.ps1 +++ b/src/MySql/internal/Invoke-AzMySqlExecuteCheckNameAvailability.ps1 @@ -35,6 +35,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.INameAvailability .Notes 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 diff --git a/src/MySql/internal/New-AzMySqlConfiguration.ps1 b/src/MySql/internal/New-AzMySqlConfiguration.ps1 index 56a5e5805424..93a403844e29 100644 --- a/src/MySql/internal/New-AzMySqlConfiguration.ps1 +++ b/src/MySql/internal/New-AzMySqlConfiguration.ps1 @@ -35,6 +35,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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 diff --git a/src/MySql/internal/New-AzMySqlDatabase.ps1 b/src/MySql/internal/New-AzMySqlDatabase.ps1 index 5ba0666446d3..bf8dc3f686d1 100644 --- a/src/MySql/internal/New-AzMySqlDatabase.ps1 +++ b/src/MySql/internal/New-AzMySqlDatabase.ps1 @@ -35,6 +35,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase .Notes 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 diff --git a/src/MySql/internal/New-AzMySqlFirewallRule.ps1 b/src/MySql/internal/New-AzMySqlFirewallRule.ps1 index e6265029739f..170a375a8d6f 100644 --- a/src/MySql/internal/New-AzMySqlFirewallRule.ps1 +++ b/src/MySql/internal/New-AzMySqlFirewallRule.ps1 @@ -21,9 +21,21 @@ Creates a new firewall rule or updates an existing firewall rule. .Example PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 -Name Type ----- ---- -rule Microsoft.DBforMySQL/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -StartIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule @@ -33,6 +45,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 @@ -55,9 +68,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlfirewallr #> function New-AzMySqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] @@ -65,6 +79,7 @@ param( ${Name}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group. @@ -72,12 +87,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Create')] + [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -100,6 +117,7 @@ param( # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] @@ -107,6 +125,7 @@ param( # Must be IPv4 format. ${EndIPAddress}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] @@ -183,10 +202,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Az.MySql.private\New-AzMySqlFirewallRule_Create'; + CreateExpanded = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateExpanded'; CreateViaIdentity = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateViaIdentity'; CreateViaIdentityExpanded = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateViaIdentityExpanded'; } - if (('Create') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Create', 'CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/MySql/internal/New-AzMySqlServer.ps1 b/src/MySql/internal/New-AzMySqlServer.ps1 index 4e81f1026121..2c681e2272a6 100644 --- a/src/MySql/internal/New-AzMySqlServer.ps1 +++ b/src/MySql/internal/New-AzMySqlServer.ps1 @@ -23,9 +23,9 @@ The update action will overwrite the existing server. .Example PS C:\> New-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -Location eastus -AdministratorUser mysql_test -AdministratorLoginPassword $password -Sku GP_Gen5_4 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerForCreate @@ -35,6 +35,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 diff --git a/src/MySql/internal/New-AzMySqlServerAdministrator.ps1 b/src/MySql/internal/New-AzMySqlServerAdministrator.ps1 index d606d7480ba9..b68bb5bc5e19 100644 --- a/src/MySql/internal/New-AzMySqlServerAdministrator.ps1 +++ b/src/MySql/internal/New-AzMySqlServerAdministrator.ps1 @@ -37,6 +37,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministratorResource .Notes 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 diff --git a/src/MySql/internal/New-AzMySqlServerSecurityAlertPolicy.ps1 b/src/MySql/internal/New-AzMySqlServerSecurityAlertPolicy.ps1 index be1aade17be2..dbde7a634233 100644 --- a/src/MySql/internal/New-AzMySqlServerSecurityAlertPolicy.ps1 +++ b/src/MySql/internal/New-AzMySqlServerSecurityAlertPolicy.ps1 @@ -35,6 +35,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlertPolicy .Notes 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 diff --git a/src/MySql/internal/New-AzMySqlVirtualNetworkRule.ps1 b/src/MySql/internal/New-AzMySqlVirtualNetworkRule.ps1 index 7ebe978c9794..9612e532e618 100644 --- a/src/MySql/internal/New-AzMySqlVirtualNetworkRule.ps1 +++ b/src/MySql/internal/New-AzMySqlVirtualNetworkRule.ps1 @@ -34,6 +34,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 diff --git a/src/MySql/internal/ProxyCmdletDefinitions.ps1 b/src/MySql/internal/ProxyCmdletDefinitions.ps1 index 8f669082144b..4152d50f296c 100644 --- a/src/MySql/internal/ProxyCmdletDefinitions.ps1 +++ b/src/MySql/internal/ProxyCmdletDefinitions.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase .Notes 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 @@ -615,6 +616,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministratorResource .Notes 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 @@ -788,6 +790,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlertPolicy .Notes 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 @@ -965,6 +968,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.INameAvailability .Notes 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 @@ -1153,6 +1157,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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 @@ -1376,6 +1381,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase .Notes 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 @@ -1585,9 +1591,21 @@ Creates a new firewall rule or updates an existing firewall rule. .Example PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 -Name Type ----- ---- -rule Microsoft.DBforMySQL/servers/firewallRules +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.0 0.0.0.1 +.Example +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -StartIPAddress 0.0.0.1 + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.1 0.0.0.1 +.Example +PS C:\> New-AzMySqlFirewallRule -Name rule -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -AllowAll + +Name StartIPAddress EndIPAddress +---- -------------- ------------ +AllowAll_2020-08-11_18-19-27 0.0.0.0 255.255.255.255 .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule @@ -1597,6 +1615,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 @@ -1619,9 +1638,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.mysql/new-azmysqlfirewallr #> function New-AzMySqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] @@ -1629,6 +1649,7 @@ param( ${Name}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group. @@ -1636,12 +1657,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Create', Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Create')] + [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -1664,6 +1687,7 @@ param( # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] @@ -1671,6 +1695,7 @@ param( # Must be IPv4 format. ${EndIPAddress}, + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [System.String] @@ -1747,10 +1772,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Create = 'Az.MySql.private\New-AzMySqlFirewallRule_Create'; + CreateExpanded = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateExpanded'; CreateViaIdentity = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateViaIdentity'; CreateViaIdentityExpanded = 'Az.MySql.private\New-AzMySqlFirewallRule_CreateViaIdentityExpanded'; } - if (('Create') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Create', 'CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -1817,6 +1843,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministratorResource .Notes 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 @@ -2040,6 +2067,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlertPolicy .Notes 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 @@ -2293,9 +2321,9 @@ The update action will overwrite the existing server. .Example PS C:\> New-AzMySqlServer -Name mysql-test -ResourceGroupName PowershellMySqlTest -Location eastus -AdministratorUser mysql_test -AdministratorLoginPassword $password -Sku GP_Gen5_4 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- ------------ -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- ------------ +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Enabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerForCreate @@ -2305,6 +2333,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 @@ -2665,6 +2694,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 @@ -2885,6 +2915,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 @@ -3079,6 +3110,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 @@ -3266,6 +3298,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase .Notes 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. PARAMETER : Represents a Database. @@ -3460,6 +3493,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministrator Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministratorResource .Notes 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. PROPERTY : Represents a and external administrator to be created. @@ -3652,6 +3686,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlert Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlertPolicy .Notes 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. PARAMETER : A server security alert policy. @@ -3889,6 +3924,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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 @@ -3911,9 +3947,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlconfig #> function Update-AzMySqlConfiguration { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('ConfigurationName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] @@ -3921,6 +3958,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group. @@ -3928,12 +3966,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -3941,19 +3981,35 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration] # Represents a Configuration. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -4023,9 +4079,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.MySql.private\Update-AzMySqlConfiguration_Update'; + UpdateExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateExpanded'; UpdateViaIdentity = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -4083,6 +4141,13 @@ rule 0.0.0.2 0.0.0.3 PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" +PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -StartIPAddress 0.0.0.2 + Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.2 0.0.0.3 @@ -4095,6 +4160,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 @@ -4117,9 +4183,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlfirewa #> function Update-AzMySqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] @@ -4127,6 +4194,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group. @@ -4134,12 +4202,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -4147,19 +4217,37 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule] # Represents a server firewall rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -4229,9 +4317,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.MySql.private\Update-AzMySqlFirewallRule_Update'; + UpdateExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateExpanded'; UpdateViaIdentity = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -4284,15 +4374,15 @@ The request body can contain one to many of the properties present in the normal .Example PS C:\> Update-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -SslEnforcement Disabled -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Update-AzMySqlServer -BackupRetentionDay 23 -StorageMb 10240 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerUpdateParameters @@ -4302,6 +4392,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 @@ -4660,6 +4751,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 diff --git a/src/MySql/internal/Remove-AzMySqlDatabase.ps1 b/src/MySql/internal/Remove-AzMySqlDatabase.ps1 index 60ccd6fc2a8a..c1430fc938f7 100644 --- a/src/MySql/internal/Remove-AzMySqlDatabase.ps1 +++ b/src/MySql/internal/Remove-AzMySqlDatabase.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 diff --git a/src/MySql/internal/Remove-AzMySqlServerAdministrator.ps1 b/src/MySql/internal/Remove-AzMySqlServerAdministrator.ps1 index a8283ae0ee2a..cc91e55d378c 100644 --- a/src/MySql/internal/Remove-AzMySqlServerAdministrator.ps1 +++ b/src/MySql/internal/Remove-AzMySqlServerAdministrator.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity System.Boolean .Notes 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 diff --git a/src/MySql/internal/Set-AzMySqlDatabase.ps1 b/src/MySql/internal/Set-AzMySqlDatabase.ps1 index 2f481a72c6ad..4b7d12da9741 100644 --- a/src/MySql/internal/Set-AzMySqlDatabase.ps1 +++ b/src/MySql/internal/Set-AzMySqlDatabase.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase .Notes 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. PARAMETER : Represents a Database. diff --git a/src/MySql/internal/Set-AzMySqlServerAdministrator.ps1 b/src/MySql/internal/Set-AzMySqlServerAdministrator.ps1 index bd3736dac95f..2a2ca8d78076 100644 --- a/src/MySql/internal/Set-AzMySqlServerAdministrator.ps1 +++ b/src/MySql/internal/Set-AzMySqlServerAdministrator.ps1 @@ -35,6 +35,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministrator Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerAdministratorResource .Notes 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. PROPERTY : Represents a and external administrator to be created. diff --git a/src/MySql/internal/Set-AzMySqlServerSecurityAlertPolicy.ps1 b/src/MySql/internal/Set-AzMySqlServerSecurityAlertPolicy.ps1 index 666ca59a002b..f9c7d20c84e5 100644 --- a/src/MySql/internal/Set-AzMySqlServerSecurityAlertPolicy.ps1 +++ b/src/MySql/internal/Set-AzMySqlServerSecurityAlertPolicy.ps1 @@ -33,6 +33,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlert Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerSecurityAlertPolicy .Notes 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. PARAMETER : A server security alert policy. diff --git a/src/MySql/internal/Update-AzMySqlConfiguration.ps1 b/src/MySql/internal/Update-AzMySqlConfiguration.ps1 index 129c6ef1b269..deb6387bd381 100644 --- a/src/MySql/internal/Update-AzMySqlConfiguration.ps1 +++ b/src/MySql/internal/Update-AzMySqlConfiguration.ps1 @@ -40,6 +40,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration .Notes 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 @@ -62,9 +63,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlconfig #> function Update-AzMySqlConfiguration { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('ConfigurationName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] @@ -72,6 +74,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group. @@ -79,12 +82,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -92,19 +97,35 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration] # Represents a Configuration. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # Source of the configuration. + ${Source}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # Value of the configuration. + ${Value}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -174,9 +195,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.MySql.private\Update-AzMySqlConfiguration_Update'; + UpdateExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateExpanded'; UpdateViaIdentity = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlConfiguration_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/MySql/internal/Update-AzMySqlFirewallRule.ps1 b/src/MySql/internal/Update-AzMySqlFirewallRule.ps1 index 6b3156788d34..124b1fa05e34 100644 --- a/src/MySql/internal/Update-AzMySqlFirewallRule.ps1 +++ b/src/MySql/internal/Update-AzMySqlFirewallRule.ps1 @@ -28,6 +28,13 @@ rule 0.0.0.2 0.0.0.3 PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 +Name StartIPAddress EndIPAddress +---- -------------- ------------ +rule 0.0.0.2 0.0.0.3 +.Example +PS C:\> $ID = "/subscriptions//resourceGroups/PowershellMySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test/firewallRules/rule" +PS C:\> Update-AzMySqlFirewallRule -InputObject $ID -StartIPAddress 0.0.0.2 + Name StartIPAddress EndIPAddress ---- -------------- ------------ rule 0.0.0.2 0.0.0.3 @@ -40,6 +47,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule .Notes 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 @@ -62,9 +70,10 @@ https://docs.microsoft.com/en-us/powershell/module/az.mysql/update-azmysqlfirewa #> function Update-AzMySqlFirewallRule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])] -[CmdletBinding(DefaultParameterSetName='UpdateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('FirewallRuleName')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] @@ -72,6 +81,7 @@ param( ${Name}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the resource group. @@ -79,12 +89,14 @@ param( ${ResourceGroupName}, [Parameter(ParameterSetName='Update', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [System.String] # The name of the server. ${ServerName}, [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -92,19 +104,37 @@ param( ${SubscriptionId}, [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity] # Identity Parameter # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ${InputObject}, - [Parameter(Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule] # Represents a server firewall rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The end IP address of the server firewall rule. + # Must be IPv4 format. + ${EndIPAddress}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')] + [System.String] + # The start IP address of the server firewall rule. + # Must be IPv4 format. + ${StartIPAddress}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -174,9 +204,11 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.MySql.private\Update-AzMySqlFirewallRule_Update'; + UpdateExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateExpanded'; UpdateViaIdentity = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateViaIdentity'; + UpdateViaIdentityExpanded = 'Az.MySql.private\Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded'; } - if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/MySql/internal/Update-AzMySqlServer.ps1 b/src/MySql/internal/Update-AzMySqlServer.ps1 index e9b11474e76e..af9e300d8565 100644 --- a/src/MySql/internal/Update-AzMySqlServer.ps1 +++ b/src/MySql/internal/Update-AzMySqlServer.ps1 @@ -23,15 +23,15 @@ The request body can contain one to many of the properties present in the normal .Example PS C:\> Update-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test -SslEnforcement Disabled -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 5120 GP_Gen5_4 GeneralPurpose Disabled .Example PS C:\> Get-AzMySqlServer -ResourceGroupName PowershellMySqlTest -ServerName mysql-test | Update-AzMySqlServer -BackupRetentionDay 23 -StorageMb 10240 -Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuSize SkuTier SslEnforcement ----- -------- ------------------ ------- ----------------------- ------- ------- ------- -------------- -mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled +Name Location AdministratorLogin Version StorageProfileStorageMb SkuName SkuTier SslEnforcement +---- -------- ------------------ ------- ----------------------- ------- ------- -------------- +mysql-test eastus mysql_test 5.7 10240 GP_Gen5_4 GeneralPurpose Disabled .Inputs Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServerUpdateParameters @@ -41,6 +41,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer .Notes 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 diff --git a/src/MySql/internal/Update-AzMySqlVirtualNetworkRule.ps1 b/src/MySql/internal/Update-AzMySqlVirtualNetworkRule.ps1 index f4eecc6ce9c2..679d80b16e04 100644 --- a/src/MySql/internal/Update-AzMySqlVirtualNetworkRule.ps1 +++ b/src/MySql/internal/Update-AzMySqlVirtualNetworkRule.ps1 @@ -42,6 +42,7 @@ Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IVirtualNetworkRule .Notes 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 diff --git a/src/MySql/internal/readme.md b/src/MySql/internal/readme.md index a706c94e901a..bb9aaa03343a 100644 --- a/src/MySql/internal/readme.md +++ b/src/MySql/internal/readme.md @@ -1,5 +1,5 @@ # Internal -This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `../custom` for all custom implementation. +This directory contains a module to handle *internal only* cmdlets. Cmdlets that you **hide** in configuration are created here. For more information on hiding, see [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression). The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation. ## Info - Modifiable: no @@ -8,7 +8,7 @@ This directory contains a module to handle *internal only* cmdlets. Cmdlets that - Packaged: yes ## Details -The `Az.MySql.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.MySql`. Instead, this sub-module is imported by the `../custom/Az.MySql.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.MySql.internal\Get-Example` would call an internal cmdlet named `Get-Example`. +The `Az.MySql.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.MySql`. Instead, this sub-module is imported by the `..\custom\Az.MySql.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.MySql.internal\Get-Example` would call an internal cmdlet named `Get-Example`. ## Purpose This allows you to include REST specifications for services that you *do not wish to expose from your module*, but simply want to call within custom cmdlets. For example, if you want to make a custom cmdlet that uses `Storage` services, you could include a simplified `Storage` REST specification that has only the operations you need. When you run the generator and build this module, note the generated `Storage` cmdlets. Then, in your readme configuration, use [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) on the `Storage` cmdlets and they will *only be exposed to the custom cmdlets* you want to write, and not be exported as part of `Az.MySql`. \ No newline at end of file diff --git a/src/MySql/readme.md b/src/MySql/readme.md index b2b9a4892204..9b6ec9968612 100644 --- a/src/MySql/readme.md +++ b/src/MySql/readme.md @@ -17,7 +17,7 @@ This directory contains the PowerShell module for the MySql 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.4 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. @@ -51,6 +51,7 @@ require: - $(this-folder)/../readme.azure.noprofile.md input-file: - $(repo)/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/mysql.json + - $(repo)/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/ServerSecurityAlertPolicies.json module-version: 0.1.0 title: MySQL subject-prefix: 'MySQL' @@ -70,7 +71,7 @@ directive: hide: true - where: verb: New$|Update$ - subject: Server$ + subject: Server$|Configuration$|FirewallRule$ hide: true - where: verb: New$ @@ -104,7 +105,6 @@ directive: - Version - StorageProfileStorageMb - SkuName - - SkuSize - SkuTier - SslEnforcement - where: @@ -136,3 +136,4 @@ directive: - from: source-file-csharp where: $ transform: $ = $.replace('public int StorageProfileBackupRetentionDay', '[System.Management.Automation.ValidateRangeAttribute(7,35)]\n public int StorageProfileBackupRetentionDay'); +``` diff --git a/src/MySql/run-module.ps1 b/src/MySql/run-module.ps1 index 582f56ac35e0..f70ceae94ed7 100644 --- a/src/MySql/run-module.ps1 +++ b/src/MySql/run-module.ps1 @@ -26,7 +26,7 @@ if($isAzure) { . (Join-Path $PSScriptRoot 'check-dependencies.ps1') -Isolated -Accounts } -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } diff --git a/src/MySql/test-module.ps1 b/src/MySql/test-module.ps1 index 7395f7e92847..60d64c2beeb1 100644 --- a/src/MySql/test-module.ps1 +++ b/src/MySql/test-module.ps1 @@ -32,7 +32,7 @@ if ($requireResourceModule) { Import-Module -Name $resourceModulePSD.FullName } -$localModulesPath = Join-Path $PSScriptRoot 'generated/modules' +$localModulesPath = Join-Path $PSScriptRoot 'generated\modules' if(Test-Path -Path $localModulesPath) { $env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath" } diff --git a/src/MySql/test/Az.MySql-TestResults.xml b/src/MySql/test/Az.MySql-TestResults.xml new file mode 100644 index 000000000000..f3860791547e --- /dev/null +++ b/src/MySql/test/Az.MySql-TestResults.xml @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/MySql/test/Get-AzMySqlConfiguration.Recording.json b/src/MySql/test/Get-AzMySqlConfiguration.Recording.json index 7e2596bd1117..0849b54d8500 100644 --- a/src/MySql/test/Get-AzMySqlConfiguration.Recording.json +++ b/src/MySql/test/Get-AzMySqlConfiguration.Recording.json @@ -5,12 +5,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "5d17e461-7288-483d-a1db-e305655052f9" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "a45b33cb-c5e1-40b1-9bfc-9a987932a5e5" ], "CommandName": [ "Get-AzMySqlConfiguration" ], "FullCommandName": [ "Get-AzMySqlConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1d347b1e-d890-4903-94cb-c3b7f897e91b" ], + "x-ms-request-id": [ "d10ec4f7-ff7a-4a42-a932-cf3e51a792cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "2854207c-a90c-457c-a985-253770b986bb" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105515Z:2854207c-a90c-457c-a985-253770b986bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "9f628787-a5c0-4594-844a-839f207f05c1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051316Z:9f628787-a5c0-4594-844a-839f207f05c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:15 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:13:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "97648" ], + "Content-Length": [ "102078" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"value\":\"OFF\",\"description\":\"Allow to audit the log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_enabled\",\"name\":\"audit_log_enabled\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"CONNECTION\",\"description\":\"Select the events to audit logs.\",\"defaultValue\":\"CONNECTION\",\"dataType\":\"Set\",\"allowedValues\":\"DDL,DML_SELECT,DML_NONSELECT,DCL,ADMIN,DML,GENERAL,CONNECTION,TABLE_ACCESS\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_events\",\"name\":\"audit_log_events\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"azure_superuser\",\"description\":\"The comma-separated user list whose commands will not be in the audit logs.\",\"defaultValue\":\"azure_superuser\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_exclude_users\",\"name\":\"audit_log_exclude_users\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"The comma-separated user list whose commands will be in the audit logs. It takes higher priority if the same user name is found in audit_log_exclude_users.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_include_users\",\"name\":\"audit_log_include_users\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"43200\",\"description\":\"The number of seconds for automatic binary log file removal. The default is 0, which means no automatic removal. Possible removals happen at startup and when the binary log is flushed.\",\"defaultValue\":\"43200\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_expire_logs_seconds\",\"name\":\"binlog_expire_logs_seconds\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0,11-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_group_commit_sync_delay\",\"name\":\"binlog_group_commit_sync_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The maximum number of transactions to wait for before aborting the current delay as specified by binlog-group-commit-sync-delay.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_group_commit_sync_no_delay_count\",\"name\":\"binlog_group_commit_sync_no_delay_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"minimal\",\"description\":\"For MySQL row-based replication, this variable determines how row images are written to the binary log.\",\"defaultValue\":\"minimal\",\"dataType\":\"Enumeration\",\"allowedValues\":\"full,minimal,noblob\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_row_image\",\"name\":\"binlog_row_image\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"latin1\",\"description\":\"Use charset_name as the default server character set.\",\"defaultValue\":\"latin1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8,ASCII,BIG5,BINARY,CP1250,CP1251,CP1256,CP1257,CP850,CP852,CP866,CP932,DEC8,EUCJPMS,EUCKR,GB18030,GB2312,GBK,GEOSTD8,GREEK,HEBREW,HP8,KEYBCS2,KOI8R,KOI8U,LATIN1,LATIN2,LATIN5,LATIN7,MACCE,MACROMAN,SJIS,SWE7,TIS620,UCS2,UJIS,UTF16,UTF16LE,UTF32,UTF8,UTF8MB4\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/character_set_server\",\"name\":\"character_set_server\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"latin1_swedish_ci\",\"description\":\"The server\u0027s default collation.\",\"defaultValue\":\"latin1_swedish_ci\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8_BIN,ARMSCII8_GENERAL_CI,ASCII_BIN,ASCII_GENERAL_CI,BIG5_BIN,BIG5_CHINESE_CI,BINARY,CP1250_BIN,CP1250_CROATIAN_CI,CP1250_CZECH_CS,CP1250_GENERAL_CI,CP1250_POLISH_CI,CP1251_BIN,CP1251_BULGARIAN_CI,CP1251_GENERAL_CI,CP1251_GENERAL_CS,CP1251_UKRAINIAN_CI,CP1256_BIN,CP1256_GENERAL_CI,CP1257_BIN,CP1257_GENERAL_CI,CP1257_LITHUANIAN_CI,CP850_BIN,CP850_GENERAL_CI,CP852_BIN,CP852_GENERAL_CI,CP866_BIN,CP866_GENERAL_CI,CP932_BIN,CP932_JAPANESE_CI,DEC8_BIN,DEC8_SWEDISH_CI,EUCJPMS_BIN,EUCJPMS_JAPANESE_CI,EUCKR_BIN,EUCKR_KOREAN_CI,GB18030_BIN,GB18030_CHINESE_CI,GB18030_UNICODE_520_CI,GB2312_BIN,GB2312_CHINESE_CI,GBK_BIN,GBK_CHINESE_CI,GEOSTD8_BIN,GEOSTD8_GENERAL_CI,GREEK_BIN,GREEK_GENERAL_CI,HEBREW_BIN,HEBREW_GENERAL_CI,HP8_BIN,HP8_ENGLISH_CI,KEYBCS2_BIN,KEYBCS2_GENERAL_CI,KOI8R_BIN,KOI8R_GENERAL_CI,KOI8U_BIN,KOI8U_GENERAL_CI,LATIN1_BIN,LATIN1_DANISH_CI,LATIN1_GENERAL_CI,LATIN1_GENERAL_CS,LATIN1_GERMAN1_CI,LATIN1_GERMAN2_CI,LATIN1_SPANISH_CI,LATIN1_SWEDISH_CI,LATIN2_BIN,LATIN2_CROATIAN_CI,LATIN2_CZECH_CS,LATIN2_GENERAL_CI,LATIN2_HUNGARIAN_CI,LATIN5_BIN,LATIN5_TURKISH_CI,LATIN7_BIN,LATIN7_ESTONIAN_CS,LATIN7_GENERAL_CI,LATIN7_GENERAL_CS,MACCE_BIN,MACCE_GENERAL_CI,MACROMAN_BIN,MACROMAN_GENERAL_CI,SJIS_BIN,SJIS_JAPANESE_CI,SWE7_BIN,SWE7_SWEDISH_CI,TIS620_BIN,TIS620_THAI_CI,UCS2_BIN,UCS2_CROATIAN_CI,UCS2_CZECH_CI,UCS2_DANISH_CI,UCS2_ESPERANTO_CI,UCS2_ESTONIAN_CI,UCS2_GENERAL_CI,UCS2_GENERAL_MYSQL500_CI,UCS2_GERMAN2_CI,UCS2_HUNGARIAN_CI,UCS2_ICELANDIC_CI,UCS2_LATVIAN_CI,UCS2_LITHUANIAN_CI,UCS2_PERSIAN_CI,UCS2_POLISH_CI,UCS2_ROMAN_CI,UCS2_ROMANIAN_CI,UCS2_SINHALA_CI,UCS2_SLOVAK_CI,UCS2_SLOVENIAN_CI,UCS2_SPANISH_CI,UCS2_SPANISH2_CI,UCS2_SWEDISH_CI,UCS2_TURKISH_CI,UCS2_UNICODE_520_CI,UCS2_UNICODE_CI,UCS2_VIETNAMESE_CI,UJIS_BIN,UJIS_JAPANESE_CI,UTF16_BIN,UTF16_CROATIAN_CI,UTF16_CZECH_CI,UTF16_DANISH_CI,UTF16_ESPERANTO_CI,UTF16_ESTONIAN_CI,UTF16_GENERAL_CI,UTF16_GERMAN2_CI,UTF16_HUNGARIAN_CI,UTF16_ICELANDIC_CI,UTF16_LATVIAN_CI,UTF16_LITHUANIAN_CI,UTF16_PERSIAN_CI,UTF16_POLISH_CI,UTF16_ROMAN_CI,UTF16_ROMANIAN_CI,UTF16_SINHALA_CI,UTF16_SLOVAK_CI,UTF16_SLOVENIAN_CI,UTF16_SPANISH_CI,UTF16_SPANISH2_CI,UTF16_SWEDISH_CI,UTF16_TURKISH_CI,UTF16_UNICODE_520_CI,UTF16_UNICODE_CI,UTF16_VIETNAMESE_CI,UTF16LE_BIN,UTF16LE_GENERAL_CI,UTF32_BIN,UTF32_CROATIAN_CI,UTF32_CZECH_CI,UTF32_DANISH_CI,UTF32_ESPERANTO_CI,UTF32_ESTONIAN_CI,UTF32_GENERAL_CI,UTF32_GERMAN2_CI,UTF32_HUNGARIAN_CI,UTF32_ICELANDIC_CI,UTF32_LATVIAN_CI,UTF32_LITHUANIAN_CI,UTF32_PERSIAN_CI,UTF32_POLISH_CI,UTF32_ROMAN_CI,UTF32_ROMANIAN_CI,UTF32_SINHALA_CI,UTF32_SLOVAK_CI,UTF32_SLOVENIAN_CI,UTF32_SPANISH_CI,UTF32_SPANISH2_CI,UTF32_SWEDISH_CI,UTF32_TURKISH_CI,UTF32_UNICODE_520_CI,UTF32_UNICODE_CI,UTF32_VIETNAMESE_CI,UTF8_BIN,UTF8_CROATIAN_CI,UTF8_CZECH_CI,UTF8_DANISH_CI,UTF8_ESPERANTO_CI,UTF8_ESTONIAN_CI,UTF8_GENERAL_CI,UTF8_GENERAL_MYSQL500_CI,UTF8_GERMAN2_CI,UTF8_HUNGARIAN_CI,UTF8_ICELANDIC_CI,UTF8_LATVIAN_CI,UTF8_LITHUANIAN_CI,UTF8_PERSIAN_CI,UTF8_POLISH_CI,UTF8_ROMAN_CI,UTF8_ROMANIAN_CI,UTF8_SINHALA_CI,UTF8_SLOVAK_CI,UTF8_SLOVENIAN_CI,UTF8_SPANISH_CI,UTF8_SPANISH2_CI,UTF8_SWEDISH_CI,UTF8_TURKISH_CI,UTF8_UNICODE_520_CI,UTF8_UNICODE_CI,UTF8_VIETNAMESE_CI,UTF8MB4_BIN,UTF8MB4_CROATIAN_CI,UTF8MB4_CZECH_CI,UTF8MB4_DANISH_CI,UTF8MB4_ESPERANTO_CI,UTF8MB4_ESTONIAN_CI,UTF8MB4_GENERAL_CI,UTF8MB4_GERMAN2_CI,UTF8MB4_HUNGARIAN_CI,UTF8MB4_ICELANDIC_CI,UTF8MB4_LATVIAN_CI,UTF8MB4_LITHUANIAN_CI,UTF8MB4_PERSIAN_CI,UTF8MB4_POLISH_CI,UTF8MB4_ROMAN_CI,UTF8MB4_ROMANIAN_CI,UTF8MB4_SINHALA_CI,UTF8MB4_SLOVAK_CI,UTF8MB4_SLOVENIAN_CI,UTF8MB4_SPANISH_CI,UTF8MB4_SPANISH2_CI,UTF8MB4_SWEDISH_CI,UTF8MB4_TURKISH_CI,UTF8MB4_UNICODE_520_CI,UTF8MB4_UNICODE_CI,UTF8MB4_VIETNAMESE_CI\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/collation_server\",\"name\":\"collation_server\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The default mode value to use for the WEEK() function.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-7\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/default_week_format\",\"name\":\"default_week_format\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"Number of digits by which to increase the scale of the result of division operations.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"0-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/div_precision_increment\",\"name\":\"div_precision_increment\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"This variable indicates the number of equality ranges in an equality comparison condition when the optimizer should switch from using index dives to index statistics in estimating the number of qualifying rows.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/eq_range_index_dive_limit\",\"name\":\"eq_range_index_dive_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Indicates the status of the Event Scheduler. It is always OFF for a replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/event_scheduler\",\"name\":\"event_scheduler\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"If this is set to a nonzero value, all tables are closed every flush_time seconds to free up resources and synchronize unflushed data to disk.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-8640000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/flush_time\",\"name\":\"flush_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"The number of top matches to use for full-text searches performed using WITH QUERY EXPANSION.\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/ft_query_expansion_limit\",\"name\":\"ft_query_expansion_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"Maximum allowed result length in bytes for the GROUP_CONCAT().\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-16777216\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/group_concat_max_len\",\"name\":\"group_concat_max_len\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"A string to be executed by the server for each client that connects.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/init_connect\",\"name\":\"init_connect\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies whether to dynamically adjust the rate of flushing dirty pages in the InnoDB buffer pool based on the workload. Adjusting the flush rate dynamically is intended to avoid bursts of I/O activity.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_flushing\",\"name\":\"innodb_adaptive_flushing\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Defines the low water mark representing percentage of redo log capacity at which adaptive flushing is enabled.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"0-70\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_flushing_lwm\",\"name\":\"innodb_adaptive_flushing_lwm\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Whether innodb adaptive hash indexes are enabled or disabled.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_hash_index\",\"name\":\"innodb_adaptive_hash_index\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Partitions the adaptive hash index search system. Each index is bound to a specific partition, with each partition protected by a separate latch. \",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-512\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_hash_index_parts\",\"name\":\"innodb_adaptive_hash_index_parts\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"150000\",\"description\":\"Permits InnoDB to automatically adjust the value of innodb_thread_sleep_delay up or down according to the current workload.\",\"defaultValue\":\"150000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_max_sleep_delay\",\"name\":\"innodb_adaptive_max_sleep_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"The increment size (in megabytes) for extending the size of an auto-extending InnoDB system tablespace file when it becomes full.\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_autoextend_increment\",\"name\":\"innodb_autoextend_increment\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The lock mode to use for generating auto-increment values.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0,1,2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_autoinc_lock_mode\",\"name\":\"innodb_autoinc_lock_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Specifies the percentage of the most recently used pages for each buffer pool to read out and dump.\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_buffer_pool_dump_pct\",\"name\":\"innodb_buffer_pool_dump_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16106127360\",\"description\":\"The size in bytes of the buffer pool, the memory area where InnoDB caches table and index data.\",\"defaultValue\":\"16106127360\",\"dataType\":\"Integer\",\"allowedValues\":\"134217728-16106127360\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_buffer_pool_size\",\"name\":\"innodb_buffer_pool_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. You might increase this value for a MySQL server with heavy insert, update, and delete activity, or decrease it for a MySQL server with unchanging data used for reporting.\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"0-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_change_buffer_max_size\",\"name\":\"innodb_change_buffer_max_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"all\",\"description\":\"Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially.\",\"defaultValue\":\"all\",\"dataType\":\"Enumeration\",\"allowedValues\":\"none,inserts,deletes,changes,purges,all\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_change_buffering\",\"name\":\"innodb_change_buffering\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enables per-index compression-related statistics in the INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX table. Because these statistics can be expensive to gather, only enable this option on development, test, or slave instances during performance tuning related to InnoDB compressed tables.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_cmp_per_index_enabled\",\"name\":\"innodb_cmp_per_index_enabled\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The number of threads that can commit at the same time. A value of 0 (the default) permits any number of transactions to commit simultaneously. The value of innodb_commit_concurrency cannot be changed at runtime from zero to nonzero or vice versa. The value can be changed from one nonzero value to another.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_commit_concurrency\",\"name\":\"innodb_commit_concurrency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"5\",\"description\":\"Defines the compression failure rate threshold for a table, as a percentage, at which point MySQL begins adding padding within compressed pages to avoid expensive compression failures.\",\"defaultValue\":\"5\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_compression_failure_threshold_pct\",\"name\":\"innodb_compression_failure_threshold_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"6\",\"description\":\"Specifies the level of zlib compression to use for InnoDB compressed tables and indexes. A higher value lets you fit more data onto a storage device, at the expense of more CPU overhead during compression. A lower value lets you reduce CPU overhead when storage space is not critical, or you expect the data is not especially compressible.\",\"defaultValue\":\"6\",\"dataType\":\"Integer\",\"allowedValues\":\"0-9\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_compression_level\",\"name\":\"innodb_compression_level\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"Specifies the maximum percentage that can be reserved as free space within each compressed page, allowing room to reorganize the data and modification log within the page when a compressed table or index is updated and the data might be recompressed. Only applies when innodb_compression_failure_threshold_pct is set to a nonzero value, and the rate of compression failures passes the cutoff point.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"0-75\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_compression_pad_pct_max\",\"name\":\"innodb_compression_pad_pct_max\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"Determines the number of threads that can enter InnoDB concurrently.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_concurrency_tickets\",\"name\":\"innodb_concurrency_tickets\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"This option is used to disable deadlock detection. On high concurrency systems, deadlock detection can cause a slowdown when numerous threads wait for the same lock.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_deadlock_detect\",\"name\":\"innodb_deadlock_detect\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"DYNAMIC\",\"description\":\"The innodb_default_row_format option defines the default row format for InnoDB tables and user-created temporary tables.\",\"defaultValue\":\"DYNAMIC\",\"dataType\":\"Enumeration\",\"allowedValues\":\"DYNAMIC,COMPACT,REDUNDANT\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_default_row_format\",\"name\":\"innodb_default_row_format\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"Barracuda\",\"description\":\"Indicates the InnoDB file format for file-per-table tablespaces.\",\"defaultValue\":\"Barracuda\",\"dataType\":\"Enumeration\",\"allowedValues\":\"Antelope,Barracuda\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_file_format\",\"name\":\"innodb_file_format\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"InnoDB stores the data and indexes for each newly created table in a separate .ibd file instead of the system tablespace. It cannot be updated any more for a master/replica server to keep the replication consistency.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_file_per_table\",\"name\":\"innodb_file_per_table\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"InnoDB performs a bulk load when creating or rebuilding indexes.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"10-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_fill_factor\",\"name\":\"innodb_fill_factor\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8000000\",\"description\":\"The memory allocated, in bytes, for the InnoDB FULLTEXT search index cache, which holds a parsed document in memory while creating an InnoDB FULLTEXT index.\",\"defaultValue\":\"8000000\",\"dataType\":\"Integer\",\"allowedValues\":\"1600000-80000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_cache_size\",\"name\":\"innodb_ft_cache_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies that a set of stopwords is associated with an InnoDB FULLTEXT index at the time the index is created.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_enable_stopword\",\"name\":\"innodb_ft_enable_stopword\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"84\",\"description\":\"Maximum character length of words that are stored in an InnoDB FULLTEXT index.\",\"defaultValue\":\"84\",\"dataType\":\"Integer\",\"allowedValues\":\"10-84\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_max_token_size\",\"name\":\"innodb_ft_max_token_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"3\",\"description\":\"Minimum length of words that are stored in an InnoDB FULLTEXT index.\",\"defaultValue\":\"3\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_min_token_size\",\"name\":\"innodb_ft_min_token_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"Number of words to process during each OPTIMIZE TABLE operation on an InnoDB FULLTEXT index.\",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_num_word_optimize\",\"name\":\"innodb_ft_num_word_optimize\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2000000000\",\"description\":\"The InnoDB full-text search query result cache limit (defined in bytes) per full-text search query or per thread.\",\"defaultValue\":\"2000000000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000000-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_result_cache_limit\",\"name\":\"innodb_ft_result_cache_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"Number of threads used in parallel to index and tokenize text in an InnoDB FULLTEXT index when building a search index.\",\"defaultValue\":\"2\",\"dataType\":\"Integer\",\"allowedValues\":\"1-32\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_sort_pll_degree\",\"name\":\"innodb_ft_sort_pll_degree\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"640000000\",\"description\":\"The total memory allocated, in bytes, for the InnoDB full-text search index cache for all tables.\",\"defaultValue\":\"640000000\",\"dataType\":\"Integer\",\"allowedValues\":\"32000000-1280000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_total_cache_size\",\"name\":\"innodb_ft_total_cache_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"Sets an upper limit on I/O activity performed by InnoDB background tasks, such as flushing pages from the buffer pool and merging data from the change buffer.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_io_capacity\",\"name\":\"innodb_io_capacity\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"If flushing activity falls behind, InnoDB can flush more aggressively than the limit imposed by innodb_io_capacity. innodb_io_capacity_max defines an upper limit the number of I/O operations performed per second by InnoDB background tasks in such situations.\",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_io_capacity_max\",\"name\":\"innodb_io_capacity_max\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"When this option is enabled, index key prefixes longer than 767 bytes (up to 3072 bytes) are allowed for InnoDB tables that use DYNAMIC or COMPRESSED row format.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_large_prefix\",\"name\":\"innodb_large_prefix\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"The length of time in seconds an InnoDB transaction waits for a row lock before giving up.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_lock_wait_timeout\",\"name\":\"innodb_lock_wait_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies whether images of re-compressed pages are written to the redo log.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_log_compressed_pages\",\"name\":\"innodb_log_compressed_pages\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"A parameter that influences the algorithms and heuristics for the flush operation for the InnoDB buffer pool.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_lru_scan_depth\",\"name\":\"innodb_lru_scan_depth\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"75\",\"description\":\"InnoDB tries to flush data from the buffer pool so that the percentage of dirty pages does not exceed this value.\",\"defaultValue\":\"75\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99.99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_dirty_pages_pct\",\"name\":\"innodb_max_dirty_pages_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Defines a low water mark representing the percentage of dirty pages at which preflushing is enabled to control the dirty page ratio.\",\"defaultValue\":\"0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99.99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_dirty_pages_pct_lwm\",\"name\":\"innodb_max_dirty_pages_pct_lwm\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Defines the maximum length of the purge queue. The default value of 0 indicates no limit (no delays).\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_purge_lag\",\"name\":\"innodb_max_purge_lag\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Specifies the maximum delay in microseconds for the delay imposed by the innodb_max_purge_lag configuration option.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-10000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_purge_lag_delay\",\"name\":\"innodb_max_purge_lag_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"37\",\"description\":\"Specifies the approximate percentage of the InnoDB buffer pool used for the old block sublist.\",\"defaultValue\":\"37\",\"dataType\":\"Integer\",\"allowedValues\":\"5-95\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_old_blocks_pct\",\"name\":\"innodb_old_blocks_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Non-zero values protect against the buffer pool being filled by data that is referenced only for a brief period, such as during a full table scan.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_old_blocks_time\",\"name\":\"innodb_old_blocks_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"134217728\",\"description\":\"Specifies an upper limit on the size of the temporary log files used during online DDL operations for InnoDB tables.\",\"defaultValue\":\"134217728\",\"dataType\":\"Integer\",\"allowedValues\":\"65536-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_online_alter_log_max_size\",\"name\":\"innodb_online_alter_log_max_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Changes the way OPTIMIZE TABLE operates on InnoDB tables. Intended to be enabled temporarily, during maintenance operations for InnoDB tables with FULLTEXT indexes.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_optimize_fulltext_only\",\"name\":\"innodb_optimize_fulltext_only\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"The number of page cleaner threads that flush dirty pages from buffer pool instances.\",\"defaultValue\":\"2\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_page_cleaners\",\"name\":\"innodb_page_cleaners\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"300\",\"description\":\"Defines the number of undo log pages that purge parses and processes in one batch from the history list.\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-5000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_purge_batch_size\",\"name\":\"innodb_purge_batch_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"Defines the frequency with which the purge system frees rollback segments in terms of the number of times that purge is invoked. Reducing this value increases the frequency with which the purge thread frees rollback segments.\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"1-128\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_purge_rseg_truncate_frequency\",\"name\":\"innodb_purge_rseg_truncate_frequency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of background threads devoted to the InnoDB purge operation.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-32\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_purge_threads\",\"name\":\"innodb_purge_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enables the random read-ahead technique for optimizing InnoDB I/O.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_random_read_ahead\",\"name\":\"innodb_random_read_ahead\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"56\",\"description\":\"Controls the sensitivity of linear read-ahead that InnoDB uses to prefetch pages into the buffer pool.\",\"defaultValue\":\"56\",\"dataType\":\"Integer\",\"allowedValues\":\"0-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_read_ahead_threshold\",\"name\":\"innodb_read_ahead_threshold\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The number of I/O threads for read operations in InnoDB.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_read_io_threads\",\"name\":\"innodb_read_io_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"Defines the number of rollback segments used by InnoDB.\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"1-128\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_rollback_segments\",\"name\":\"innodb_rollback_segments\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Causes InnoDB to automatically recalculate persistent statistics after the data in a table is changed substantially.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_auto_recalc\",\"name\":\"innodb_stats_auto_recalc\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\" Enabled to ensure that InnoDB includes delete-marked records when calculating persistent optimizer statistics.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_include_delete_marked\",\"name\":\"innodb_stats_include_delete_marked\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"nulls_equal\",\"description\":\"How the server treats NULL values when collecting statistics about the distribution of index values for InnoDB tables.\",\"defaultValue\":\"nulls_equal\",\"dataType\":\"Enumeration\",\"allowedValues\":\"nulls_equal,nulls_unequal,nulls_ignored\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_method\",\"name\":\"innodb_stats_method\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This option only applies when optimizer statistics are configured to be non-persistent. When innodb_stats_on_metadata is enabled, InnoDB updates non-persistent statistics when metadata statements such as SHOW TABLE STATUS or when accessing the INFORMATION_SCHEMA.TABLES or INFORMATION_SCHEMA.STATISTICS tables.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_on_metadata\",\"name\":\"innodb_stats_on_metadata\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies whether InnoDB index statistics are persisted to disk. Otherwise, statistics may be recalculated frequently which can lead to variations in query execution plans.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_persistent\",\"name\":\"innodb_stats_persistent\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE.\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_persistent_sample_pages\",\"name\":\"innodb_stats_persistent_sample_pages\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_transient_sample_pages\",\"name\":\"innodb_stats_transient_sample_pages\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Defines the size of the mutex/lock wait array. Increasing the value splits the internal data structure used to coordinate threads, for higher concurrency in workloads with large numbers of waiting threads. \",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1024\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_sync_array_size\",\"name\":\"innodb_sync_array_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"The default value of innodb_table_locks is 1, which means that LOCK TABLES causes InnoDB to lock a table internally if autocommit = 0.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_table_locks\",\"name\":\"innodb_table_locks\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"InnoDB tries to keep the number of operating system threads concurrently inside InnoDB less than or equal to the limit given by this variable.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_thread_concurrency\",\"name\":\"innodb_thread_concurrency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"Defines how long InnoDB threads sleep before joining the InnoDB queue, in microseconds.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_thread_sleep_delay\",\"name\":\"innodb_thread_sleep_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The number of I/O threads for write operations in InnoDB.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_write_io_threads\",\"name\":\"innodb_write_io_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"28800\",\"description\":\"Number of seconds the server waits for activity on an interactive connection before closing it.\",\"defaultValue\":\"28800\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/interactive_timeout\",\"name\":\"interactive_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"262144\",\"description\":\"The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.\",\"defaultValue\":\"262144\",\"dataType\":\"Integer\",\"allowedValues\":\"128-536870912\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/join_buffer_size\",\"name\":\"join_buffer_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"31536000\",\"description\":\"This variable specifies the timeout in seconds for attempts to acquire metadata locks.\",\"defaultValue\":\"31536000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/lock_wait_timeout\",\"name\":\"lock_wait_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This variable applies when binary logging is enabled. It controls whether stored function creators can be trusted not to create stored functions that will cause unsafe events to be written to the binary log. It cannot be updated any more for a master/replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_bin_trust_function_creators\",\"name\":\"log_bin_trust_function_creators\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"FILE\",\"description\":\"The destination for general query log and slow query log output.\",\"defaultValue\":\"FILE\",\"dataType\":\"Set\",\"allowedValues\":\"FILE,NONE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_output\",\"name\":\"log_output\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Logs queries that are expected to retrieve all rows to slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_queries_not_using_indexes\",\"name\":\"log_queries_not_using_indexes\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Include slow administrative statements in the statements written to the slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_slow_admin_statements\",\"name\":\"log_slow_admin_statements\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"When the slow query log is enabled, this variable enables logging for queries that have taken more than long_query_time seconds to execute on the slave.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_slow_slave_statements\",\"name\":\"log_slow_slave_statements\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Limits the number of such queries per minute that can be written to the slow query log.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_throttle_queries_not_using_indexes\",\"name\":\"log_throttle_queries_not_using_indexes\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a query takes longer than this many seconds, the server increments the Slow_queries status variable.\",\"defaultValue\":\"10\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/long_query_time\",\"name\":\"long_query_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive. If set to 2, table names are stored as given but compared in lowercase.\",\"defaultValue\":\"1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"1,2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/lower_case_table_names\",\"name\":\"lower_case_table_names\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"536870912\",\"description\":\"The maximum size of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function.\",\"defaultValue\":\"536870912\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_allowed_packet\",\"name\":\"max_allowed_packet\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"If more than this many successive connection requests from a host are interrupted without a successful connection, the server blocks that host from further connections.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_connect_errors\",\"name\":\"max_connect_errors\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"625\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"defaultValue\":\"625\",\"dataType\":\"Integer\",\"allowedValues\":\"10-1250\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_connections\",\"name\":\"max_connections\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The maximum number of bytes available for computing normalized statement digests.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_digest_length\",\"name\":\"max_digest_length\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"The maximum number of error, warning, and note messages to be stored for display by the SHOW ERRORS and SHOW WARNINGS statements.\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"0-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_error_count\",\"name\":\"max_error_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The execution timeout for SELECT statements, in milliseconds. If the value is 0, timeouts are not enabled.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_execution_time\",\"name\":\"max_execution_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16777216\",\"description\":\"This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.\",\"defaultValue\":\"16777216\",\"dataType\":\"Integer\",\"allowedValues\":\"16384-536870912\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_heap_table_size\",\"name\":\"max_heap_table_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"18446744073709551615\",\"description\":\"Do not permit statements that probably need to examine more than max_join_size rows\",\"defaultValue\":\"18446744073709551615\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_join_size\",\"name\":\"max_join_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The cutoff on the size of index values that determines which filesort algorithm to use.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_length_for_sort_data\",\"name\":\"max_length_for_sort_data\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"65536\",\"description\":\"The maximum value of the points_per_circle argument to the ST_Buffer_Strategy() function.\",\"defaultValue\":\"65536\",\"dataType\":\"Integer\",\"allowedValues\":\"3-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_points_in_geometry\",\"name\":\"max_points_in_geometry\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16382\",\"description\":\"This variable limits the total number of prepared statements in the server.\",\"defaultValue\":\"16382\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_prepared_stmt_count\",\"name\":\"max_prepared_stmt_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"Limit the assumed maximum number of seeks when looking up rows based on a key.\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_seeks_for_key\",\"name\":\"max_seeks_for_key\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The number of bytes to use when sorting data values.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_sort_length\",\"name\":\"max_sort_length\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The number of times that any given stored procedure may be called recursively. The default value for this option is 0, which completely disables recursion in stored procedures.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-255\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_sp_recursion_depth\",\"name\":\"max_sp_recursion_depth\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means \u0027no limit.\u0027\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_user_connections\",\"name\":\"max_user_connections\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"After this many write locks, permit some pending read lock requests to be processed in between.\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_write_lock_count\",\"name\":\"max_write_lock_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Can be used to cause queries which examine fewer than the stated number of rows not to be logged.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/min_examined_row_limit\",\"name\":\"min_examined_row_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16384\",\"description\":\"Each client thread is associated with a connection buffer and result buffer. Both begin with a size given by net_buffer_length but are dynamically enlarged up to max_allowed_packet bytes as needed.\",\"defaultValue\":\"16384\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_buffer_length\",\"name\":\"net_buffer_length\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for network reading action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_read_timeout\",\"name\":\"net_read_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a read or write on a communication port is interrupted, retry this many times before giving up.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_retry_count\",\"name\":\"net_retry_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"240\",\"description\":\"The number of seconds the server waits for network writing action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"240\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_write_timeout\",\"name\":\"net_write_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"Defines the n-gram token size for the n-gram full-text parser. \",\"defaultValue\":\"2\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/ngram_token_size\",\"name\":\"ngram_token_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Controls the heuristics applied during query optimization to prune less-promising partial plans from the optimizer search space.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0,1\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/optimizer_prune_level\",\"name\":\"optimizer_prune_level\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"62\",\"description\":\"The maximum depth of search performed by the query optimizer.\",\"defaultValue\":\"62\",\"dataType\":\"Integer\",\"allowedValues\":\"0-62\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/optimizer_search_depth\",\"name\":\"optimizer_search_depth\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"default\",\"description\":\"The value of this variable is a set of flags, each of which has a value of on or off to indicate whether the corresponding optimizer behavior is enabled or disabled.\",\"defaultValue\":\"default\",\"dataType\":\"Set\",\"allowedValues\":\"default,batched_key_access=on,batched_key_access=off,block_nested_loop=on,block_nested_loop=off,condition_fanout_filter=on,condition_fanout_filter=off,derived_merge=on,derived_merge=off,duplicateweedout=on,duplicateweedout=off,engine_condition_pushdown=on,engine_condition_pushdown=off,firstmatch=on,firstmatch=off,index_condition_pushdown=on,index_condition_pushdown=off,index_merge=on,index_merge=off,index_merge_intersection=on,index_merge_intersection=off,index_merge_sort_union=on,index_merge_sort_union=off,index_merge_union=on,index_merge_union=off,loosescan=on,loosescan=off,materialization=on,materialization=off,mrr=on,mrr=off,mrr_cost_based=on,mrr_cost_based=off,semijoin=on,semijoin=off,subquery_materialization_cost_based=on,subquery_materialization_cost_based=off,use_index_extensions=on,use_index_extensions=off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/optimizer_switch\",\"name\":\"optimizer_switch\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"18446744073709551615\",\"description\":\"The maximum amount of memory available to the parser.\",\"defaultValue\":\"18446744073709551615\",\"dataType\":\"Integer\",\"allowedValues\":\"10000000-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/parser_max_mem_size\",\"name\":\"parser_max_mem_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"The value of this variable is ON or OFF to indicate whether the Performance Schema is enabled.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/performance_schema\",\"name\":\"performance_schema\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"32768\",\"description\":\"The size of the buffer that is allocated when preloading indexes.\",\"defaultValue\":\"32768\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/preload_buffer_size\",\"name\":\"preload_buffer_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1048576\",\"description\":\"Do not cache results that are larger than this number of bytes.\",\"defaultValue\":\"1048576\",\"dataType\":\"Integer\",\"allowedValues\":\"0-33554432\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_limit\",\"name\":\"query_cache_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"The minimum size (in bytes) for blocks allocated by the query cache.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"512-32768\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_min_res_unit\",\"name\":\"query_cache_min_res_unit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The amount of memory allocated for caching query results.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0,102400-33554432\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_size\",\"name\":\"query_cache_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Set the query cache type.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF,DEMAND\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_type\",\"name\":\"query_cache_type\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8192\",\"description\":\"The size of the persistent buffer used for statement parsing and execution. This buffer is not freed between statements. If you are running complex queries, a larger value might be helpful in improving performance, because it can reduce the need for the server to perform memory allocation during query execution operations.\",\"defaultValue\":\"8192\",\"dataType\":\"Integer\",\"allowedValues\":\"8192-32768\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_prealloc_size\",\"name\":\"query_prealloc_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"15\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"15\",\"dataType\":\"Integer\",\"allowedValues\":\"5-60\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_capture_interval\",\"name\":\"query_store_capture_interval\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store capture mode, NONE means do not capture any statements. NOTE: If performance_schema is OFF, turning on query_store_capture_mode will turn on performance_schema and a subset of performance schema instruments required for this feature.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_capture_mode\",\"name\":\"query_store_capture_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"NO\",\"description\":\"Turning ON or OFF to capture all the utility queries that is executing in the system.\",\"defaultValue\":\"NO\",\"dataType\":\"Enumeration\",\"allowedValues\":\"YES,NO\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_capture_utility_queries\",\"name\":\"query_store_capture_utility_queries\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"7\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"7\",\"dataType\":\"Integer\",\"allowedValues\":\"1-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_retention_period_in_days\",\"name\":\"query_store_retention_period_in_days\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store wait event sampling capture mode, NONE means do not capture any wait events.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_wait_sampling_capture_mode\",\"name\":\"query_store_wait_sampling_capture_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"30\",\"description\":\"The query store wait event sampling frequency in seconds.\",\"defaultValue\":\"30\",\"dataType\":\"Integer\",\"allowedValues\":\"5-300\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_wait_sampling_frequency\",\"name\":\"query_store_wait_sampling_frequency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"The size of blocks that are allocated when doing range optimization.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"4096-32768\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/range_alloc_block_size\",\"name\":\"range_alloc_block_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8388608\",\"description\":\"The limit on memory consumption for the range optimizer. A value of 0 means \u0027no limit.\u0027\",\"defaultValue\":\"8388608\",\"dataType\":\"Integer\",\"allowedValues\":\"4096-33554432\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/range_optimizer_max_mem_size\",\"name\":\"range_optimizer_max_mem_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This parameter controls whetherthe server permits no client updates. When the server is read replica or server storage is full, this parameter will not take effect.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/read_only\",\"name\":\"read_only\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1073741824\",\"description\":\"This option places an upper limit on the total size in bytes of all relay logs on the slave.\",\"defaultValue\":\"1073741824\",\"dataType\":\"Integer\",\"allowedValues\":\"1073741824-3221225472\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/relay_log_space_limit\",\"name\":\"relay_log_space_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1882433252\",\"description\":\"The server ID, used in replication to give each master and slave a unique identity.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-4294967295\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/server_id\",\"name\":\"server_id\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Controls whether the server tracks changes to the default schema (database) name within the current session and makes this information available to the client when changes occur.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/session_track_schema\",\"name\":\"session_track_schema\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Controls whether the server tracks changes to the state of the current session and notifies the client when state changes occur.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/session_track_state_change\",\"name\":\"session_track_state_change\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Affects whether MySQL 5.6 compatibility is enabled with respect to how system and status variable information is provided by the INFORMATION_SCHEMA and Performance Schema tables, and also by the SHOW VARIABLES and SHOW STATUS statements.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/show_compatibility_56\",\"name\":\"show_compatibility_56\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This prevents people from using the SHOW DATABASES statement if they do not have the SHOW DATABASES privilege. \",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/skip_show_database\",\"name\":\"skip_show_database\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"60\",\"description\":\"The number of seconds to wait for more data from the master before the slave considers the connection broken, aborts the read, and tries to reconnect.\",\"defaultValue\":\"60\",\"dataType\":\"Integer\",\"allowedValues\":\"30-3600\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/slave_net_timeout\",\"name\":\"slave_net_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable or disable the slow query log\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/slow_query_log\",\"name\":\"slow_query_log\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"524288\",\"description\":\"Each session that must perform a sort allocates a buffer of this size.\",\"defaultValue\":\"524288\",\"dataType\":\"Integer\",\"allowedValues\":\"32768-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/sort_buffer_size\",\"name\":\"sort_buffer_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"The current server SQL mode.\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",ALLOW_INVALID_DATES,ANSI_QUOTES,ERROR_FOR_DIVISION_BY_ZERO,HIGH_NOT_PRECEDENCE,IGNORE_SPACE,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES,NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION,NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS,NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY,PAD_CHAR_TO_FULL_LENGTH,PIPES_AS_CONCAT,REAL_AS_FLOAT,STRICT_ALL_TABLES,STRICT_TRANS_TABLES\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/sql_mode\",\"name\":\"sql_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"256\",\"description\":\"Sets a soft upper limit for the number of cached stored routines per connection.\",\"defaultValue\":\"256\",\"dataType\":\"Integer\",\"allowedValues\":\"16-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/stored_program_cache\",\"name\":\"stored_program_cache\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"The number of table definitions (from .frm files) that can be stored in the definition cache.\",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"400-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/table_definition_cache\",\"name\":\"table_definition_cache\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"The number of open tables for all threads.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-40000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/table_open_cache\",\"name\":\"table_open_cache\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The number of open tables cache instances.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-16\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/table_open_cache_instances\",\"name\":\"table_open_cache_instances\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"65535\",\"description\":\"The minimal number of threads in the thread pool. Only works when thread_handling=pool-of-threads.\",\"defaultValue\":\"65535\",\"dataType\":\"Integer\",\"allowedValues\":\"1-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_pool_max_threads\",\"name\":\"thread_pool_max_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The maximal number of threads in the thread pool. Only works when thread_handling=pool-of-threads.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_pool_min_threads\",\"name\":\"thread_pool_min_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"SYSTEM\",\"description\":\"The server time zone\",\"defaultValue\":\"SYSTEM\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/time_zone\",\"name\":\"time_zone\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16777216\",\"description\":\"The maximum size of internal in-memory temporary tables. This variable does not apply to user-created MEMORY tables.\",\"defaultValue\":\"16777216\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-134217728\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/tmp_table_size\",\"name\":\"tmp_table_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8192\",\"description\":\"The amount in bytes by which to increase a per-transaction memory pool which needs memory.\",\"defaultValue\":\"8192\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-131072\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/transaction_alloc_block_size\",\"name\":\"transaction_alloc_block_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"There is a per-transaction memory pool from which various transaction-related allocations take memory. The initial size of the pool in bytes is transaction_prealloc_size.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-131072\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/transaction_prealloc_size\",\"name\":\"transaction_prealloc_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"REPEATABLE-READ\",\"description\":\"The default transaction isolation level.\",\"defaultValue\":\"REPEATABLE-READ\",\"dataType\":\"Enumeration\",\"allowedValues\":\"READ-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ,SERIALIZABLE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/tx_isolation\",\"name\":\"tx_isolation\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"YES\",\"description\":\"This variable controls whether updates to a view can be made when the view does not contain all columns of the primary key defined in the underlying table, if the update statement contains a LIMIT clause.\",\"defaultValue\":\"YES\",\"dataType\":\"Enumeration\",\"allowedValues\":\"YES,NO\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/updatable_views_with_limit\",\"name\":\"updatable_views_with_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for activity on a noninteractive connection before closing it.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/wait_timeout\",\"name\":\"wait_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"}]}" + "Content": "{\"value\":[{\"properties\":{\"value\":\"OFF\",\"description\":\"Allow to audit the log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_enabled\",\"name\":\"audit_log_enabled\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"CONNECTION\",\"description\":\"Select the events to audit logs.\",\"defaultValue\":\"CONNECTION\",\"dataType\":\"Set\",\"allowedValues\":\"DDL,DML_SELECT,DML_NONSELECT,DCL,ADMIN,DML,GENERAL,CONNECTION,TABLE_ACCESS\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_events\",\"name\":\"audit_log_events\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"azure_superuser\",\"description\":\"The comma-separated user list whose commands will not be in the audit logs.\",\"defaultValue\":\"azure_superuser\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_exclude_users\",\"name\":\"audit_log_exclude_users\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"The comma-separated user list whose commands will be in the audit logs. It takes higher priority if the same user name is found in audit_log_exclude_users.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/audit_log_include_users\",\"name\":\"audit_log_include_users\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The number of seconds for automatic binary log file removal. The default is 0, which means no automatic removal. Possible removals happen at startup and when the binary log is flushed.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_expire_logs_seconds\",\"name\":\"binlog_expire_logs_seconds\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0,11-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_group_commit_sync_delay\",\"name\":\"binlog_group_commit_sync_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The maximum number of transactions to wait for before aborting the current delay as specified by binlog-group-commit-sync-delay.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_group_commit_sync_no_delay_count\",\"name\":\"binlog_group_commit_sync_no_delay_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"minimal\",\"description\":\"For MySQL row-based replication, this variable determines how row images are written to the binary log.\",\"defaultValue\":\"minimal\",\"dataType\":\"Enumeration\",\"allowedValues\":\"full,minimal,noblob\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_row_image\",\"name\":\"binlog_row_image\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"30\",\"description\":\"The binlog max capacity for stop.\",\"defaultValue\":\"30\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/binlog_sum_size_for_stop_pct_max\",\"name\":\"binlog_sum_size_for_stop_pct_max\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"latin1\",\"description\":\"Use charset_name as the default server character set.\",\"defaultValue\":\"latin1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8,ASCII,BIG5,BINARY,CP1250,CP1251,CP1256,CP1257,CP850,CP852,CP866,CP932,DEC8,EUCJPMS,EUCKR,GB18030,GB2312,GBK,GEOSTD8,GREEK,HEBREW,HP8,KEYBCS2,KOI8R,KOI8U,LATIN1,LATIN2,LATIN5,LATIN7,MACCE,MACROMAN,SJIS,SWE7,TIS620,UCS2,UJIS,UTF16,UTF16LE,UTF32,UTF8,UTF8MB4\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/character_set_server\",\"name\":\"character_set_server\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"latin1_swedish_ci\",\"description\":\"The server\u0027s default collation.\",\"defaultValue\":\"latin1_swedish_ci\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ARMSCII8_BIN,ARMSCII8_GENERAL_CI,ASCII_BIN,ASCII_GENERAL_CI,BIG5_BIN,BIG5_CHINESE_CI,BINARY,CP1250_BIN,CP1250_CROATIAN_CI,CP1250_CZECH_CS,CP1250_GENERAL_CI,CP1250_POLISH_CI,CP1251_BIN,CP1251_BULGARIAN_CI,CP1251_GENERAL_CI,CP1251_GENERAL_CS,CP1251_UKRAINIAN_CI,CP1256_BIN,CP1256_GENERAL_CI,CP1257_BIN,CP1257_GENERAL_CI,CP1257_LITHUANIAN_CI,CP850_BIN,CP850_GENERAL_CI,CP852_BIN,CP852_GENERAL_CI,CP866_BIN,CP866_GENERAL_CI,CP932_BIN,CP932_JAPANESE_CI,DEC8_BIN,DEC8_SWEDISH_CI,EUCJPMS_BIN,EUCJPMS_JAPANESE_CI,EUCKR_BIN,EUCKR_KOREAN_CI,GB18030_BIN,GB18030_CHINESE_CI,GB18030_UNICODE_520_CI,GB2312_BIN,GB2312_CHINESE_CI,GBK_BIN,GBK_CHINESE_CI,GEOSTD8_BIN,GEOSTD8_GENERAL_CI,GREEK_BIN,GREEK_GENERAL_CI,HEBREW_BIN,HEBREW_GENERAL_CI,HP8_BIN,HP8_ENGLISH_CI,KEYBCS2_BIN,KEYBCS2_GENERAL_CI,KOI8R_BIN,KOI8R_GENERAL_CI,KOI8U_BIN,KOI8U_GENERAL_CI,LATIN1_BIN,LATIN1_DANISH_CI,LATIN1_GENERAL_CI,LATIN1_GENERAL_CS,LATIN1_GERMAN1_CI,LATIN1_GERMAN2_CI,LATIN1_SPANISH_CI,LATIN1_SWEDISH_CI,LATIN2_BIN,LATIN2_CROATIAN_CI,LATIN2_CZECH_CS,LATIN2_GENERAL_CI,LATIN2_HUNGARIAN_CI,LATIN5_BIN,LATIN5_TURKISH_CI,LATIN7_BIN,LATIN7_ESTONIAN_CS,LATIN7_GENERAL_CI,LATIN7_GENERAL_CS,MACCE_BIN,MACCE_GENERAL_CI,MACROMAN_BIN,MACROMAN_GENERAL_CI,SJIS_BIN,SJIS_JAPANESE_CI,SWE7_BIN,SWE7_SWEDISH_CI,TIS620_BIN,TIS620_THAI_CI,UCS2_BIN,UCS2_CROATIAN_CI,UCS2_CZECH_CI,UCS2_DANISH_CI,UCS2_ESPERANTO_CI,UCS2_ESTONIAN_CI,UCS2_GENERAL_CI,UCS2_GENERAL_MYSQL500_CI,UCS2_GERMAN2_CI,UCS2_HUNGARIAN_CI,UCS2_ICELANDIC_CI,UCS2_LATVIAN_CI,UCS2_LITHUANIAN_CI,UCS2_PERSIAN_CI,UCS2_POLISH_CI,UCS2_ROMAN_CI,UCS2_ROMANIAN_CI,UCS2_SINHALA_CI,UCS2_SLOVAK_CI,UCS2_SLOVENIAN_CI,UCS2_SPANISH_CI,UCS2_SPANISH2_CI,UCS2_SWEDISH_CI,UCS2_TURKISH_CI,UCS2_UNICODE_520_CI,UCS2_UNICODE_CI,UCS2_VIETNAMESE_CI,UJIS_BIN,UJIS_JAPANESE_CI,UTF16_BIN,UTF16_CROATIAN_CI,UTF16_CZECH_CI,UTF16_DANISH_CI,UTF16_ESPERANTO_CI,UTF16_ESTONIAN_CI,UTF16_GENERAL_CI,UTF16_GERMAN2_CI,UTF16_HUNGARIAN_CI,UTF16_ICELANDIC_CI,UTF16_LATVIAN_CI,UTF16_LITHUANIAN_CI,UTF16_PERSIAN_CI,UTF16_POLISH_CI,UTF16_ROMAN_CI,UTF16_ROMANIAN_CI,UTF16_SINHALA_CI,UTF16_SLOVAK_CI,UTF16_SLOVENIAN_CI,UTF16_SPANISH_CI,UTF16_SPANISH2_CI,UTF16_SWEDISH_CI,UTF16_TURKISH_CI,UTF16_UNICODE_520_CI,UTF16_UNICODE_CI,UTF16_VIETNAMESE_CI,UTF16LE_BIN,UTF16LE_GENERAL_CI,UTF32_BIN,UTF32_CROATIAN_CI,UTF32_CZECH_CI,UTF32_DANISH_CI,UTF32_ESPERANTO_CI,UTF32_ESTONIAN_CI,UTF32_GENERAL_CI,UTF32_GERMAN2_CI,UTF32_HUNGARIAN_CI,UTF32_ICELANDIC_CI,UTF32_LATVIAN_CI,UTF32_LITHUANIAN_CI,UTF32_PERSIAN_CI,UTF32_POLISH_CI,UTF32_ROMAN_CI,UTF32_ROMANIAN_CI,UTF32_SINHALA_CI,UTF32_SLOVAK_CI,UTF32_SLOVENIAN_CI,UTF32_SPANISH_CI,UTF32_SPANISH2_CI,UTF32_SWEDISH_CI,UTF32_TURKISH_CI,UTF32_UNICODE_520_CI,UTF32_UNICODE_CI,UTF32_VIETNAMESE_CI,UTF8_BIN,UTF8_CROATIAN_CI,UTF8_CZECH_CI,UTF8_DANISH_CI,UTF8_ESPERANTO_CI,UTF8_ESTONIAN_CI,UTF8_GENERAL_CI,UTF8_GENERAL_MYSQL500_CI,UTF8_GERMAN2_CI,UTF8_HUNGARIAN_CI,UTF8_ICELANDIC_CI,UTF8_LATVIAN_CI,UTF8_LITHUANIAN_CI,UTF8_PERSIAN_CI,UTF8_POLISH_CI,UTF8_ROMAN_CI,UTF8_ROMANIAN_CI,UTF8_SINHALA_CI,UTF8_SLOVAK_CI,UTF8_SLOVENIAN_CI,UTF8_SPANISH_CI,UTF8_SPANISH2_CI,UTF8_SWEDISH_CI,UTF8_TURKISH_CI,UTF8_UNICODE_520_CI,UTF8_UNICODE_CI,UTF8_VIETNAMESE_CI,UTF8MB4_BIN,UTF8MB4_CROATIAN_CI,UTF8MB4_CZECH_CI,UTF8MB4_DANISH_CI,UTF8MB4_ESPERANTO_CI,UTF8MB4_ESTONIAN_CI,UTF8MB4_GENERAL_CI,UTF8MB4_GERMAN2_CI,UTF8MB4_HUNGARIAN_CI,UTF8MB4_ICELANDIC_CI,UTF8MB4_LATVIAN_CI,UTF8MB4_LITHUANIAN_CI,UTF8MB4_PERSIAN_CI,UTF8MB4_POLISH_CI,UTF8MB4_ROMAN_CI,UTF8MB4_ROMANIAN_CI,UTF8MB4_SINHALA_CI,UTF8MB4_SLOVAK_CI,UTF8MB4_SLOVENIAN_CI,UTF8MB4_SPANISH_CI,UTF8MB4_SPANISH2_CI,UTF8MB4_SWEDISH_CI,UTF8MB4_TURKISH_CI,UTF8MB4_UNICODE_520_CI,UTF8MB4_UNICODE_CI,UTF8MB4_VIETNAMESE_CI\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/collation_server\",\"name\":\"collation_server\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The default mode value to use for the WEEK() function.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-7\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/default_week_format\",\"name\":\"default_week_format\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"Number of digits by which to increase the scale of the result of division operations.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"0-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/div_precision_increment\",\"name\":\"div_precision_increment\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"This variable indicates the number of equality ranges in an equality comparison condition when the optimizer should switch from using index dives to index statistics in estimating the number of qualifying rows.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/eq_range_index_dive_limit\",\"name\":\"eq_range_index_dive_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Indicates the status of the Event Scheduler. It is always OFF for a replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/event_scheduler\",\"name\":\"event_scheduler\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"If this is set to a nonzero value, all tables are closed every flush_time seconds to free up resources and synchronize unflushed data to disk.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-8640000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/flush_time\",\"name\":\"flush_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"The number of top matches to use for full-text searches performed using WITH QUERY EXPANSION.\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/ft_query_expansion_limit\",\"name\":\"ft_query_expansion_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"Maximum allowed result length in bytes for the GROUP_CONCAT().\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-16777216\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/group_concat_max_len\",\"name\":\"group_concat_max_len\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"A string to be executed by the server for each client that connects.\",\"defaultValue\":\"\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/init_connect\",\"name\":\"init_connect\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies whether to dynamically adjust the rate of flushing dirty pages in the InnoDB buffer pool based on the workload. Adjusting the flush rate dynamically is intended to avoid bursts of I/O activity.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_flushing\",\"name\":\"innodb_adaptive_flushing\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"Defines the low water mark representing percentage of redo log capacity at which adaptive flushing is enabled.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"0-70\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_flushing_lwm\",\"name\":\"innodb_adaptive_flushing_lwm\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Whether innodb adaptive hash indexes are enabled or disabled.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_hash_index\",\"name\":\"innodb_adaptive_hash_index\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"Partitions the adaptive hash index search system. Each index is bound to a specific partition, with each partition protected by a separate latch. \",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-512\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_hash_index_parts\",\"name\":\"innodb_adaptive_hash_index_parts\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"150000\",\"description\":\"Permits InnoDB to automatically adjust the value of innodb_thread_sleep_delay up or down according to the current workload.\",\"defaultValue\":\"150000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_adaptive_max_sleep_delay\",\"name\":\"innodb_adaptive_max_sleep_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"The increment size (in megabytes) for extending the size of an auto-extending InnoDB system tablespace file when it becomes full.\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_autoextend_increment\",\"name\":\"innodb_autoextend_increment\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The lock mode to use for generating auto-increment values.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0,1,2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_autoinc_lock_mode\",\"name\":\"innodb_autoinc_lock_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Specifies the percentage of the most recently used pages for each buffer pool to read out and dump.\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"1-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_buffer_pool_dump_pct\",\"name\":\"innodb_buffer_pool_dump_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16106127360\",\"description\":\"The size in bytes of the buffer pool, the memory area where InnoDB caches table and index data.\",\"defaultValue\":\"16106127360\",\"dataType\":\"Integer\",\"allowedValues\":\"134217728-16106127360\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_buffer_pool_size\",\"name\":\"innodb_buffer_pool_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"25\",\"description\":\"Maximum size for the InnoDB change buffer, as a percentage of the total size of the buffer pool. You might increase this value for a MySQL server with heavy insert, update, and delete activity, or decrease it for a MySQL server with unchanging data used for reporting.\",\"defaultValue\":\"25\",\"dataType\":\"Integer\",\"allowedValues\":\"0-50\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_change_buffer_max_size\",\"name\":\"innodb_change_buffer_max_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"all\",\"description\":\"Whether InnoDB performs change buffering, an optimization that delays write operations to secondary indexes so that the I/O operations can be performed sequentially.\",\"defaultValue\":\"all\",\"dataType\":\"Enumeration\",\"allowedValues\":\"none,inserts,deletes,changes,purges,all\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_change_buffering\",\"name\":\"innodb_change_buffering\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enables per-index compression-related statistics in the INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX table. Because these statistics can be expensive to gather, only enable this option on development, test, or slave instances during performance tuning related to InnoDB compressed tables.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_cmp_per_index_enabled\",\"name\":\"innodb_cmp_per_index_enabled\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The number of threads that can commit at the same time. A value of 0 (the default) permits any number of transactions to commit simultaneously. The value of innodb_commit_concurrency cannot be changed at runtime from zero to nonzero or vice versa. The value can be changed from one nonzero value to another.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_commit_concurrency\",\"name\":\"innodb_commit_concurrency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"5\",\"description\":\"Defines the compression failure rate threshold for a table, as a percentage, at which point MySQL begins adding padding within compressed pages to avoid expensive compression failures.\",\"defaultValue\":\"5\",\"dataType\":\"Integer\",\"allowedValues\":\"0-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_compression_failure_threshold_pct\",\"name\":\"innodb_compression_failure_threshold_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"6\",\"description\":\"Specifies the level of zlib compression to use for InnoDB compressed tables and indexes. A higher value lets you fit more data onto a storage device, at the expense of more CPU overhead during compression. A lower value lets you reduce CPU overhead when storage space is not critical, or you expect the data is not especially compressible.\",\"defaultValue\":\"6\",\"dataType\":\"Integer\",\"allowedValues\":\"0-9\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_compression_level\",\"name\":\"innodb_compression_level\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"Specifies the maximum percentage that can be reserved as free space within each compressed page, allowing room to reorganize the data and modification log within the page when a compressed table or index is updated and the data might be recompressed. Only applies when innodb_compression_failure_threshold_pct is set to a nonzero value, and the rate of compression failures passes the cutoff point.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"0-75\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_compression_pad_pct_max\",\"name\":\"innodb_compression_pad_pct_max\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"Determines the number of threads that can enter InnoDB concurrently.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_concurrency_tickets\",\"name\":\"innodb_concurrency_tickets\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"This option is used to disable deadlock detection. On high concurrency systems, deadlock detection can cause a slowdown when numerous threads wait for the same lock.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_deadlock_detect\",\"name\":\"innodb_deadlock_detect\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"DYNAMIC\",\"description\":\"The innodb_default_row_format option defines the default row format for InnoDB tables and user-created temporary tables.\",\"defaultValue\":\"DYNAMIC\",\"dataType\":\"Enumeration\",\"allowedValues\":\"DYNAMIC,COMPACT,REDUNDANT\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_default_row_format\",\"name\":\"innodb_default_row_format\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"Barracuda\",\"description\":\"Indicates the InnoDB file format for file-per-table tablespaces.\",\"defaultValue\":\"Barracuda\",\"dataType\":\"Enumeration\",\"allowedValues\":\"Antelope,Barracuda\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_file_format\",\"name\":\"innodb_file_format\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"InnoDB stores the data and indexes for each newly created table in a separate .ibd file instead of the system tablespace. It cannot be updated any more for a master/replica server to keep the replication consistency.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_file_per_table\",\"name\":\"innodb_file_per_table\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"InnoDB performs a bulk load when creating or rebuilding indexes.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"10-100\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_fill_factor\",\"name\":\"innodb_fill_factor\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8000000\",\"description\":\"The memory allocated, in bytes, for the InnoDB FULLTEXT search index cache, which holds a parsed document in memory while creating an InnoDB FULLTEXT index.\",\"defaultValue\":\"8000000\",\"dataType\":\"Integer\",\"allowedValues\":\"1600000-80000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_cache_size\",\"name\":\"innodb_ft_cache_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies that a set of stopwords is associated with an InnoDB FULLTEXT index at the time the index is created.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_enable_stopword\",\"name\":\"innodb_ft_enable_stopword\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"84\",\"description\":\"Maximum character length of words that are stored in an InnoDB FULLTEXT index.\",\"defaultValue\":\"84\",\"dataType\":\"Integer\",\"allowedValues\":\"10-84\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_max_token_size\",\"name\":\"innodb_ft_max_token_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"3\",\"description\":\"Minimum length of words that are stored in an InnoDB FULLTEXT index.\",\"defaultValue\":\"3\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_min_token_size\",\"name\":\"innodb_ft_min_token_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"Number of words to process during each OPTIMIZE TABLE operation on an InnoDB FULLTEXT index.\",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-10000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_num_word_optimize\",\"name\":\"innodb_ft_num_word_optimize\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2000000000\",\"description\":\"The InnoDB full-text search query result cache limit (defined in bytes) per full-text search query or per thread.\",\"defaultValue\":\"2000000000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000000-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_result_cache_limit\",\"name\":\"innodb_ft_result_cache_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"Number of threads used in parallel to index and tokenize text in an InnoDB FULLTEXT index when building a search index.\",\"defaultValue\":\"2\",\"dataType\":\"Integer\",\"allowedValues\":\"1-32\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_sort_pll_degree\",\"name\":\"innodb_ft_sort_pll_degree\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"640000000\",\"description\":\"The total memory allocated, in bytes, for the InnoDB full-text search index cache for all tables.\",\"defaultValue\":\"640000000\",\"dataType\":\"Integer\",\"allowedValues\":\"32000000-1280000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_ft_total_cache_size\",\"name\":\"innodb_ft_total_cache_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"200\",\"description\":\"Sets an upper limit on I/O activity performed by InnoDB background tasks, such as flushing pages from the buffer pool and merging data from the change buffer.\",\"defaultValue\":\"200\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_io_capacity\",\"name\":\"innodb_io_capacity\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2000\",\"description\":\"If flushing activity falls behind, InnoDB can flush more aggressively than the limit imposed by innodb_io_capacity. innodb_io_capacity_max defines an upper limit the number of I/O operations performed per second by InnoDB background tasks in such situations.\",\"defaultValue\":\"2000\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_io_capacity_max\",\"name\":\"innodb_io_capacity_max\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"When this option is enabled, index key prefixes longer than 767 bytes (up to 3072 bytes) are allowed for InnoDB tables that use DYNAMIC or COMPRESSED row format.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_large_prefix\",\"name\":\"innodb_large_prefix\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"50\",\"description\":\"The length of time in seconds an InnoDB transaction waits for a row lock before giving up.\",\"defaultValue\":\"50\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_lock_wait_timeout\",\"name\":\"innodb_lock_wait_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies whether images of re-compressed pages are written to the redo log.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_log_compressed_pages\",\"name\":\"innodb_log_compressed_pages\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"A parameter that influences the algorithms and heuristics for the flush operation for the InnoDB buffer pool.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"100-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_lru_scan_depth\",\"name\":\"innodb_lru_scan_depth\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"75\",\"description\":\"InnoDB tries to flush data from the buffer pool so that the percentage of dirty pages does not exceed this value.\",\"defaultValue\":\"75\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99.99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_dirty_pages_pct\",\"name\":\"innodb_max_dirty_pages_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Defines a low water mark representing the percentage of dirty pages at which preflushing is enabled to control the dirty page ratio.\",\"defaultValue\":\"0\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-99.99\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_dirty_pages_pct_lwm\",\"name\":\"innodb_max_dirty_pages_pct_lwm\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Defines the maximum length of the purge queue. The default value of 0 indicates no limit (no delays).\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_purge_lag\",\"name\":\"innodb_max_purge_lag\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Specifies the maximum delay in microseconds for the delay imposed by the innodb_max_purge_lag configuration option.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-10000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_max_purge_lag_delay\",\"name\":\"innodb_max_purge_lag_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"37\",\"description\":\"Specifies the approximate percentage of the InnoDB buffer pool used for the old block sublist.\",\"defaultValue\":\"37\",\"dataType\":\"Integer\",\"allowedValues\":\"5-95\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_old_blocks_pct\",\"name\":\"innodb_old_blocks_pct\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1000\",\"description\":\"Non-zero values protect against the buffer pool being filled by data that is referenced only for a brief period, such as during a full table scan.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_old_blocks_time\",\"name\":\"innodb_old_blocks_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"134217728\",\"description\":\"Specifies an upper limit on the size of the temporary log files used during online DDL operations for InnoDB tables.\",\"defaultValue\":\"134217728\",\"dataType\":\"Integer\",\"allowedValues\":\"65536-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_online_alter_log_max_size\",\"name\":\"innodb_online_alter_log_max_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Changes the way OPTIMIZE TABLE operates on InnoDB tables. Intended to be enabled temporarily, during maintenance operations for InnoDB tables with FULLTEXT indexes.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_optimize_fulltext_only\",\"name\":\"innodb_optimize_fulltext_only\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of page cleaner threads that flush dirty pages from buffer pool instances.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_page_cleaners\",\"name\":\"innodb_page_cleaners\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"300\",\"description\":\"Defines the number of undo log pages that purge parses and processes in one batch from the history list.\",\"defaultValue\":\"300\",\"dataType\":\"Integer\",\"allowedValues\":\"1-5000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_purge_batch_size\",\"name\":\"innodb_purge_batch_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"Defines the frequency with which the purge system frees rollback segments in terms of the number of times that purge is invoked. Reducing this value increases the frequency with which the purge thread frees rollback segments.\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"1-128\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_purge_rseg_truncate_frequency\",\"name\":\"innodb_purge_rseg_truncate_frequency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of background threads devoted to the InnoDB purge operation.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-32\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_purge_threads\",\"name\":\"innodb_purge_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enables the random read-ahead technique for optimizing InnoDB I/O.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_random_read_ahead\",\"name\":\"innodb_random_read_ahead\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"56\",\"description\":\"Controls the sensitivity of linear read-ahead that InnoDB uses to prefetch pages into the buffer pool.\",\"defaultValue\":\"56\",\"dataType\":\"Integer\",\"allowedValues\":\"0-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_read_ahead_threshold\",\"name\":\"innodb_read_ahead_threshold\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of I/O threads for read operations in InnoDB.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_read_io_threads\",\"name\":\"innodb_read_io_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"128\",\"description\":\"Defines the number of rollback segments used by InnoDB.\",\"defaultValue\":\"128\",\"dataType\":\"Integer\",\"allowedValues\":\"1-128\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_rollback_segments\",\"name\":\"innodb_rollback_segments\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Causes InnoDB to automatically recalculate persistent statistics after the data in a table is changed substantially.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_auto_recalc\",\"name\":\"innodb_stats_auto_recalc\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\" Enabled to ensure that InnoDB includes delete-marked records when calculating persistent optimizer statistics.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_include_delete_marked\",\"name\":\"innodb_stats_include_delete_marked\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"nulls_equal\",\"description\":\"How the server treats NULL values when collecting statistics about the distribution of index values for InnoDB tables.\",\"defaultValue\":\"nulls_equal\",\"dataType\":\"Enumeration\",\"allowedValues\":\"nulls_equal,nulls_unequal,nulls_ignored\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_method\",\"name\":\"innodb_stats_method\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This option only applies when optimizer statistics are configured to be non-persistent. When innodb_stats_on_metadata is enabled, InnoDB updates non-persistent statistics when metadata statements such as SHOW TABLE STATUS or when accessing the INFORMATION_SCHEMA.TABLES or INFORMATION_SCHEMA.STATISTICS tables.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_on_metadata\",\"name\":\"innodb_stats_on_metadata\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Specifies whether InnoDB index statistics are persisted to disk. Otherwise, statistics may be recalculated frequently which can lead to variations in query execution plans.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_persistent\",\"name\":\"innodb_stats_persistent\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"20\",\"description\":\"The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE.\",\"defaultValue\":\"20\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_persistent_sample_pages\",\"name\":\"innodb_stats_persistent_sample_pages\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8\",\"description\":\"The number of index pages to sample when estimating cardinality and other statistics for an indexed column, such as those calculated by ANALYZE TABLE.\",\"defaultValue\":\"8\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_stats_transient_sample_pages\",\"name\":\"innodb_stats_transient_sample_pages\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Defines the size of the mutex/lock wait array. Increasing the value splits the internal data structure used to coordinate threads, for higher concurrency in workloads with large numbers of waiting threads. \",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-1024\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_sync_array_size\",\"name\":\"innodb_sync_array_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"The default value of innodb_table_locks is 1, which means that LOCK TABLES causes InnoDB to lock a table internally if autocommit = 0.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_table_locks\",\"name\":\"innodb_table_locks\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"InnoDB tries to keep the number of operating system threads concurrently inside InnoDB less than or equal to the limit given by this variable.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_thread_concurrency\",\"name\":\"innodb_thread_concurrency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10000\",\"description\":\"Defines how long InnoDB threads sleep before joining the InnoDB queue, in microseconds.\",\"defaultValue\":\"10000\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1000000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_thread_sleep_delay\",\"name\":\"innodb_thread_sleep_delay\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4\",\"description\":\"The number of I/O threads for write operations in InnoDB.\",\"defaultValue\":\"4\",\"dataType\":\"Integer\",\"allowedValues\":\"1-64\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/innodb_write_io_threads\",\"name\":\"innodb_write_io_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"28800\",\"description\":\"Number of seconds the server waits for activity on an interactive connection before closing it.\",\"defaultValue\":\"28800\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/interactive_timeout\",\"name\":\"interactive_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"262144\",\"description\":\"The minimum size of the buffer that is used for plain index scans, range index scans, and joins that do not use indexes and thus perform full table scans.\",\"defaultValue\":\"262144\",\"dataType\":\"Integer\",\"allowedValues\":\"128-536870912\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/join_buffer_size\",\"name\":\"join_buffer_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"This variable controls server-side LOCAL capability for LOAD DATA statements.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/local_infile\",\"name\":\"local_infile\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"31536000\",\"description\":\"This variable specifies the timeout in seconds for attempts to acquire metadata locks.\",\"defaultValue\":\"31536000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/lock_wait_timeout\",\"name\":\"lock_wait_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This variable applies when binary logging is enabled. It controls whether stored function creators can be trusted not to create stored functions that will cause unsafe events to be written to the binary log. It cannot be updated any more for a master/replica server to keep the replication consistency.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_bin_trust_function_creators\",\"name\":\"log_bin_trust_function_creators\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"FILE\",\"description\":\"The destination for general query log and slow query log output.\",\"defaultValue\":\"FILE\",\"dataType\":\"Set\",\"allowedValues\":\"FILE,NONE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_output\",\"name\":\"log_output\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Logs queries that are expected to retrieve all rows to slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_queries_not_using_indexes\",\"name\":\"log_queries_not_using_indexes\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Include slow administrative statements in the statements written to the slow query log.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_slow_admin_statements\",\"name\":\"log_slow_admin_statements\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"When the slow query log is enabled, this variable enables logging for queries that have taken more than long_query_time seconds to execute on the slave.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_slow_slave_statements\",\"name\":\"log_slow_slave_statements\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Limits the number of such queries per minute that can be written to the slow query log.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/log_throttle_queries_not_using_indexes\",\"name\":\"log_throttle_queries_not_using_indexes\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a query takes longer than this many seconds, the server increments the Slow_queries status variable.\",\"defaultValue\":\"10\",\"dataType\":\"Numeric\",\"allowedValues\":\"0-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/long_query_time\",\"name\":\"long_query_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive. If set to 2, table names are stored as given but compared in lowercase.\",\"defaultValue\":\"1\",\"dataType\":\"Enumeration\",\"allowedValues\":\"1,2\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/lower_case_table_names\",\"name\":\"lower_case_table_names\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"536870912\",\"description\":\"The maximum size of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function.\",\"defaultValue\":\"536870912\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_allowed_packet\",\"name\":\"max_allowed_packet\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"100\",\"description\":\"If more than this many successive connection requests from a host are interrupted without a successful connection, the server blocks that host from further connections.\",\"defaultValue\":\"100\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_connect_errors\",\"name\":\"max_connect_errors\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"625\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"defaultValue\":\"625\",\"dataType\":\"Integer\",\"allowedValues\":\"10-1250\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_connections\",\"name\":\"max_connections\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The maximum number of bytes available for computing normalized statement digests.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_digest_length\",\"name\":\"max_digest_length\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"64\",\"description\":\"The maximum number of error, warning, and note messages to be stored for display by the SHOW ERRORS and SHOW WARNINGS statements.\",\"defaultValue\":\"64\",\"dataType\":\"Integer\",\"allowedValues\":\"0-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_error_count\",\"name\":\"max_error_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The execution timeout for SELECT statements, in milliseconds. If the value is 0, timeouts are not enabled.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_execution_time\",\"name\":\"max_execution_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16777216\",\"description\":\"This variable sets the maximum size to which user-created MEMORY tables are permitted to grow.\",\"defaultValue\":\"16777216\",\"dataType\":\"Integer\",\"allowedValues\":\"16384-536870912\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_heap_table_size\",\"name\":\"max_heap_table_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"18446744073709551615\",\"description\":\"Do not permit statements that probably need to examine more than max_join_size rows\",\"defaultValue\":\"18446744073709551615\",\"dataType\":\"Integer\",\"allowedValues\":\"1-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_join_size\",\"name\":\"max_join_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The cutoff on the size of index values that determines which filesort algorithm to use.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_length_for_sort_data\",\"name\":\"max_length_for_sort_data\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"65536\",\"description\":\"The maximum value of the points_per_circle argument to the ST_Buffer_Strategy() function.\",\"defaultValue\":\"65536\",\"dataType\":\"Integer\",\"allowedValues\":\"3-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_points_in_geometry\",\"name\":\"max_points_in_geometry\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16382\",\"description\":\"This variable limits the total number of prepared statements in the server.\",\"defaultValue\":\"16382\",\"dataType\":\"Integer\",\"allowedValues\":\"0-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_prepared_stmt_count\",\"name\":\"max_prepared_stmt_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"Limit the assumed maximum number of seeks when looking up rows based on a key.\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_seeks_for_key\",\"name\":\"max_seeks_for_key\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1024\",\"description\":\"The number of bytes to use when sorting data values.\",\"defaultValue\":\"1024\",\"dataType\":\"Integer\",\"allowedValues\":\"4-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_sort_length\",\"name\":\"max_sort_length\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The number of times that any given stored procedure may be called recursively. The default value for this option is 0, which completely disables recursion in stored procedures.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-255\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_sp_recursion_depth\",\"name\":\"max_sp_recursion_depth\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The maximum number of simultaneous connections permitted to any given MySQL user account. A value of 0 (the default) means \u0027no limit.\u0027\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_user_connections\",\"name\":\"max_user_connections\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4294967295\",\"description\":\"After this many write locks, permit some pending read lock requests to be processed in between.\",\"defaultValue\":\"4294967295\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/max_write_lock_count\",\"name\":\"max_write_lock_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Can be used to cause queries which examine fewer than the stated number of rows not to be logged.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/min_examined_row_limit\",\"name\":\"min_examined_row_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16384\",\"description\":\"Each client thread is associated with a connection buffer and result buffer. Both begin with a size given by net_buffer_length but are dynamically enlarged up to max_allowed_packet bytes as needed.\",\"defaultValue\":\"16384\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1048576\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_buffer_length\",\"name\":\"net_buffer_length\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for network reading action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_read_timeout\",\"name\":\"net_read_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"10\",\"description\":\"If a read or write on a communication port is interrupted, retry this many times before giving up.\",\"defaultValue\":\"10\",\"dataType\":\"Integer\",\"allowedValues\":\"1-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_retry_count\",\"name\":\"net_retry_count\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"240\",\"description\":\"The number of seconds the server waits for network writing action, especially for LOAD DATA LOCAL FILE.\",\"defaultValue\":\"240\",\"dataType\":\"Integer\",\"allowedValues\":\"1-31536000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_write_timeout\",\"name\":\"net_write_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"2\",\"description\":\"Defines the n-gram token size for the n-gram full-text parser. \",\"defaultValue\":\"2\",\"dataType\":\"Integer\",\"allowedValues\":\"1-10\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/ngram_token_size\",\"name\":\"ngram_token_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"Controls the heuristics applied during query optimization to prune less-promising partial plans from the optimizer search space.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"0,1\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/optimizer_prune_level\",\"name\":\"optimizer_prune_level\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"62\",\"description\":\"The maximum depth of search performed by the query optimizer.\",\"defaultValue\":\"62\",\"dataType\":\"Integer\",\"allowedValues\":\"0-62\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/optimizer_search_depth\",\"name\":\"optimizer_search_depth\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"default\",\"description\":\"The value of this variable is a set of flags, each of which has a value of on or off to indicate whether the corresponding optimizer behavior is enabled or disabled.\",\"defaultValue\":\"default\",\"dataType\":\"Set\",\"allowedValues\":\"default,batched_key_access=on,batched_key_access=off,block_nested_loop=on,block_nested_loop=off,condition_fanout_filter=on,condition_fanout_filter=off,derived_merge=on,derived_merge=off,duplicateweedout=on,duplicateweedout=off,engine_condition_pushdown=on,engine_condition_pushdown=off,firstmatch=on,firstmatch=off,index_condition_pushdown=on,index_condition_pushdown=off,index_merge=on,index_merge=off,index_merge_intersection=on,index_merge_intersection=off,index_merge_sort_union=on,index_merge_sort_union=off,index_merge_union=on,index_merge_union=off,loosescan=on,loosescan=off,materialization=on,materialization=off,mrr=on,mrr=off,mrr_cost_based=on,mrr_cost_based=off,semijoin=on,semijoin=off,subquery_materialization_cost_based=on,subquery_materialization_cost_based=off,use_index_extensions=on,use_index_extensions=off\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/optimizer_switch\",\"name\":\"optimizer_switch\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"18446744073709551615\",\"description\":\"The maximum amount of memory available to the parser.\",\"defaultValue\":\"18446744073709551615\",\"dataType\":\"Integer\",\"allowedValues\":\"10000000-18446744073709551615\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/parser_max_mem_size\",\"name\":\"parser_max_mem_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"The value of this variable is ON or OFF to indicate whether the Performance Schema is enabled.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/performance_schema\",\"name\":\"performance_schema\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"32768\",\"description\":\"The size of the buffer that is allocated when preloading indexes.\",\"defaultValue\":\"32768\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-1073741824\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/preload_buffer_size\",\"name\":\"preload_buffer_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1048576\",\"description\":\"Do not cache results that are larger than this number of bytes.\",\"defaultValue\":\"1048576\",\"dataType\":\"Integer\",\"allowedValues\":\"0-33554432\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_limit\",\"name\":\"query_cache_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"The minimum size (in bytes) for blocks allocated by the query cache.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"512-32768\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_min_res_unit\",\"name\":\"query_cache_min_res_unit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"The amount of memory allocated for caching query results.\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0,102400-33554432\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_size\",\"name\":\"query_cache_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Set the query cache type.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF,DEMAND\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_cache_type\",\"name\":\"query_cache_type\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8192\",\"description\":\"The size of the persistent buffer used for statement parsing and execution. This buffer is not freed between statements. If you are running complex queries, a larger value might be helpful in improving performance, because it can reduce the need for the server to perform memory allocation during query execution operations.\",\"defaultValue\":\"8192\",\"dataType\":\"Integer\",\"allowedValues\":\"8192-32768\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_prealloc_size\",\"name\":\"query_prealloc_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"15\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"15\",\"dataType\":\"Integer\",\"allowedValues\":\"5-60\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_capture_interval\",\"name\":\"query_store_capture_interval\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store capture mode, NONE means do not capture any statements. NOTE: If performance_schema is OFF, turning on query_store_capture_mode will turn on performance_schema and a subset of performance schema instruments required for this feature.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_capture_mode\",\"name\":\"query_store_capture_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"NO\",\"description\":\"Turning ON or OFF to capture all the utility queries that is executing in the system.\",\"defaultValue\":\"NO\",\"dataType\":\"Enumeration\",\"allowedValues\":\"YES,NO\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_capture_utility_queries\",\"name\":\"query_store_capture_utility_queries\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"7\",\"description\":\"The query store capture interval in minutes. Allows to specify the interval in which the query metrics are aggregated.\",\"defaultValue\":\"7\",\"dataType\":\"Integer\",\"allowedValues\":\"1-30\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_retention_period_in_days\",\"name\":\"query_store_retention_period_in_days\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"NONE\",\"description\":\"The query store wait event sampling capture mode, NONE means do not capture any wait events.\",\"defaultValue\":\"NONE\",\"dataType\":\"Enumeration\",\"allowedValues\":\"NONE,ALL\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_wait_sampling_capture_mode\",\"name\":\"query_store_wait_sampling_capture_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"30\",\"description\":\"The query store wait event sampling frequency in seconds.\",\"defaultValue\":\"30\",\"dataType\":\"Integer\",\"allowedValues\":\"5-300\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/query_store_wait_sampling_frequency\",\"name\":\"query_store_wait_sampling_frequency\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"The size of blocks that are allocated when doing range optimization.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"4096-32768\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/range_alloc_block_size\",\"name\":\"range_alloc_block_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8388608\",\"description\":\"The limit on memory consumption for the range optimizer. A value of 0 means \u0027no limit.\u0027\",\"defaultValue\":\"8388608\",\"dataType\":\"Integer\",\"allowedValues\":\"4096-33554432\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/range_optimizer_max_mem_size\",\"name\":\"range_optimizer_max_mem_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This parameter controls whetherthe server permits no client updates. When the server is read replica or server storage is full, this parameter will not take effect.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/read_only\",\"name\":\"read_only\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Indicate server support redirection.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/redirect_enabled\",\"name\":\"redirect_enabled\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1073741824\",\"description\":\"This option places an upper limit on the total size in bytes of all relay logs on the slave.\",\"defaultValue\":\"1073741824\",\"dataType\":\"Integer\",\"allowedValues\":\"1073741824-3221225472\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/relay_log_space_limit\",\"name\":\"relay_log_space_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"mysql.%\",\"description\":\"Creates a replication filter which keeps the slave thread from replicating a statement in which any table matches the given wildcard pattern. To specify more than one table to ignore, use comma-separated list.\",\"defaultValue\":\"mysql.%\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/replicate_wild_ignore_table\",\"name\":\"replicate_wild_ignore_table\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1409435902\",\"description\":\"The server ID, used in replication to give each master and slave a unique identity.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-4294967295\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/server_id\",\"name\":\"server_id\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"ON\",\"description\":\"Controls whether the server tracks changes to the default schema (database) name within the current session and makes this information available to the client when changes occur.\",\"defaultValue\":\"ON\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/session_track_schema\",\"name\":\"session_track_schema\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Controls whether the server tracks changes to the state of the current session and notifies the client when state changes occur.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/session_track_state_change\",\"name\":\"session_track_state_change\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Affects whether MySQL 5.6 compatibility is enabled with respect to how system and status variable information is provided by the INFORMATION_SCHEMA and Performance Schema tables, and also by the SHOW VARIABLES and SHOW STATUS statements.\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/show_compatibility_56\",\"name\":\"show_compatibility_56\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"This prevents people from using the SHOW DATABASES statement if they do not have the SHOW DATABASES privilege. \",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/skip_show_database\",\"name\":\"skip_show_database\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"60\",\"description\":\"The number of seconds to wait for more data from the master before the slave considers the connection broken, aborts the read, and tries to reconnect.\",\"defaultValue\":\"60\",\"dataType\":\"Integer\",\"allowedValues\":\"30-3600\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/slave_net_timeout\",\"name\":\"slave_net_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"OFF\",\"description\":\"Enable or disable the slow query log\",\"defaultValue\":\"OFF\",\"dataType\":\"Enumeration\",\"allowedValues\":\"ON,OFF\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/slow_query_log\",\"name\":\"slow_query_log\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"524288\",\"description\":\"Each session that must perform a sort allocates a buffer of this size.\",\"defaultValue\":\"524288\",\"dataType\":\"Integer\",\"allowedValues\":\"32768-8388608\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/sort_buffer_size\",\"name\":\"sort_buffer_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"\",\"description\":\"The current server SQL mode.\",\"defaultValue\":\"\",\"dataType\":\"Set\",\"allowedValues\":\",ALLOW_INVALID_DATES,ANSI_QUOTES,ERROR_FOR_DIVISION_BY_ZERO,HIGH_NOT_PRECEDENCE,IGNORE_SPACE,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES,NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION,NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS,NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY,PAD_CHAR_TO_FULL_LENGTH,PIPES_AS_CONCAT,REAL_AS_FLOAT,STRICT_ALL_TABLES,STRICT_TRANS_TABLES\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/sql_mode\",\"name\":\"sql_mode\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"256\",\"description\":\"Sets a soft upper limit for the number of cached stored routines per connection.\",\"defaultValue\":\"256\",\"dataType\":\"Integer\",\"allowedValues\":\"16-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/stored_program_cache\",\"name\":\"stored_program_cache\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"The number of table definitions (from .frm files) that can be stored in the definition cache.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"400-524288\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/table_definition_cache\",\"name\":\"table_definition_cache\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"5000\",\"description\":\"The number of open tables for all threads.\",\"defaultValue\":\"5000\",\"dataType\":\"Integer\",\"allowedValues\":\"1-40000\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/table_open_cache\",\"name\":\"table_open_cache\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The number of open tables cache instances.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-16\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/table_open_cache_instances\",\"name\":\"table_open_cache_instances\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"14\",\"description\":\"How many threads the server should cache for reuse. The default value is 8 + (max_connections / 100), capped to a limit of 100.\",\"defaultValue\":\"14\",\"dataType\":\"Integer\",\"allowedValues\":\"0-16384\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_cache_size\",\"name\":\"thread_cache_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"one-thread-per-connection\",\"description\":\"The thread-handling model used by the server for connection threads.\",\"defaultValue\":\"one-thread-per-connection\",\"dataType\":\"Enumeration\",\"allowedValues\":\"one-thread-per-connection,pool-of-threads\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"False\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_handling\",\"name\":\"thread_handling\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Maximum time for a thread to run continously (unit: us).\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_pool_batch_max_time\",\"name\":\"thread_pool_batch_max_time\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"0\",\"description\":\"Maximum time for a thread to wait for socket ready (unit: us).\",\"defaultValue\":\"0\",\"dataType\":\"Integer\",\"allowedValues\":\"0-4294967295\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_pool_batch_wait_timeout\",\"name\":\"thread_pool_batch_wait_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"65535\",\"description\":\"The minimal number of threads in the thread pool. Only works when thread_handling=pool-of-threads.\",\"defaultValue\":\"65535\",\"dataType\":\"Integer\",\"allowedValues\":\"1-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_pool_max_threads\",\"name\":\"thread_pool_max_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"1\",\"description\":\"The maximal number of threads in the thread pool. Only works when thread_handling=pool-of-threads.\",\"defaultValue\":\"1\",\"dataType\":\"Integer\",\"allowedValues\":\"1-65535\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/thread_pool_min_threads\",\"name\":\"thread_pool_min_threads\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"SYSTEM\",\"description\":\"The server time zone\",\"defaultValue\":\"SYSTEM\",\"dataType\":\"String\",\"allowedValues\":\"\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/time_zone\",\"name\":\"time_zone\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"16777216\",\"description\":\"The maximum size of internal in-memory temporary tables. This variable does not apply to user-created MEMORY tables.\",\"defaultValue\":\"16777216\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-134217728\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/tmp_table_size\",\"name\":\"tmp_table_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"8192\",\"description\":\"The amount in bytes by which to increase a per-transaction memory pool which needs memory.\",\"defaultValue\":\"8192\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-131072\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/transaction_alloc_block_size\",\"name\":\"transaction_alloc_block_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"4096\",\"description\":\"There is a per-transaction memory pool from which various transaction-related allocations take memory. The initial size of the pool in bytes is transaction_prealloc_size.\",\"defaultValue\":\"4096\",\"dataType\":\"Integer\",\"allowedValues\":\"1024-131072\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/transaction_prealloc_size\",\"name\":\"transaction_prealloc_size\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"REPEATABLE-READ\",\"description\":\"The default transaction isolation level.\",\"defaultValue\":\"REPEATABLE-READ\",\"dataType\":\"Enumeration\",\"allowedValues\":\"READ-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ,SERIALIZABLE\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/tx_isolation\",\"name\":\"tx_isolation\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"YES\",\"description\":\"This variable controls whether updates to a view can be made when the view does not contain all columns of the primary key defined in the underlying table, if the update statement contains a LIMIT clause.\",\"defaultValue\":\"YES\",\"dataType\":\"Enumeration\",\"allowedValues\":\"YES,NO\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/updatable_views_with_limit\",\"name\":\"updatable_views_with_limit\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"},{\"properties\":{\"value\":\"120\",\"description\":\"The number of seconds the server waits for activity on a noninteractive connection before closing it.\",\"defaultValue\":\"120\",\"dataType\":\"Integer\",\"allowedValues\":\"1-2147483\",\"source\":\"system-default\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/wait_timeout\",\"name\":\"wait_timeout\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"}]}" } }, "Get-AzMySqlConfiguration+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/time_zone?api-version=2017-12-01+1": { @@ -44,12 +44,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/time_zone?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "3e1e7941-9753-4a63-96a5-3ca8a7a3e95f" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "e3a53f10-2523-43fd-b9e5-55de88d1d7f6" ], "CommandName": [ "Get-AzMySqlConfiguration" ], "FullCommandName": [ "Get-AzMySqlConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,14 +60,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e79ef82a-ba80-4830-bc22-00f4e1861f02" ], + "x-ms-request-id": [ "73bb490f-638c-4ca8-950a-66fcde558cb3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "79eee06f-6808-41d2-a1e4-5a4a09d9a6ee" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105520Z:79eee06f-6808-41d2-a1e4-5a4a09d9a6ee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "835068ae-3be0-4d95-aace-2354402c6b6c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051317Z:835068ae-3be0-4d95-aace-2354402c6b6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:13:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "452" ], @@ -83,12 +83,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/server_id?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "13" ], - "x-ms-client-request-id": [ "bbc4b04b-dd2a-4e52-b2c7-e31f9e0b581f" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "06c9387e-598c-4895-be18-823ed84674a9" ], "CommandName": [ "Get-AzMySqlConfiguration" ], "FullCommandName": [ "Get-AzMySqlConfiguration_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -99,21 +99,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cb864b96-e58f-4e84-9954-69dab68526bc" ], + "x-ms-request-id": [ "0eda62b0-bba8-4562-bf25-86b6dbea0ba2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "5b84a022-9efe-4c75-91ad-8b707898368e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105521Z:5b84a022-9efe-4c75-91ad-8b707898368e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "ed6f7e52-9b8e-4e15-b397-de91cc2a5560" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051317Z:ed6f7e52-9b8e-4e15-b397-de91cc2a5560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:13:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "532" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"value\":\"1882433252\",\"description\":\"The server ID, used in replication to give each master and slave a unique identity.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-4294967295\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/server_id\",\"name\":\"server_id\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"}" + "Content": "{\"properties\":{\"value\":\"1409435902\",\"description\":\"The server ID, used in replication to give each master and slave a unique identity.\",\"defaultValue\":\"1000\",\"dataType\":\"Integer\",\"allowedValues\":\"1000-4294967295\",\"source\":\"user-override\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/server_id\",\"name\":\"server_id\",\"type\":\"Microsoft.DBforMySQL/servers/configurations\"}" } } } \ No newline at end of file diff --git a/src/MySql/test/Get-AzMySqlConnectionString.Recording.json b/src/MySql/test/Get-AzMySqlConnectionString.Recording.json index e7d010453613..0e531a8ab8e9 100644 --- a/src/MySql/test/Get-AzMySqlConnectionString.Recording.json +++ b/src/MySql/test/Get-AzMySqlConnectionString.Recording.json @@ -5,12 +5,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "1109d327-812a-4202-8942-e6a84978a60c" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "8b669176-768e-4373-aeb6-1abacd11d2cb" ], "CommandName": [ "Az.MySql\\Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1d111037-1cbc-40b8-9052-1418eb478ac0" ], + "x-ms-request-id": [ "0647ea03-bdb8-42ef-9527-460f25917278" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "b6dbf7d5-4187-443c-8b7d-4fc0e47ce233" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105524Z:b6dbf7d5-4187-443c-8b7d-4fc0e47ce233" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-correlation-request-id": [ "56261382-f1a4-4aa6-bbf1-ab1c60fd1099" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051559Z:56261382-f1a4-4aa6-bbf1-ab1c60fd1099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:23 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:15:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { @@ -44,12 +44,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "2848af3c-c756-4df1-a08d-0c109fd6e865" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "0b7980dc-56f9-4ba5-90f0-5572c60a09d1" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,21 +60,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "126d5a71-f227-4ede-be6a-c3cc466e1080" ], + "x-ms-request-id": [ "49c5afbf-cc1b-4ab3-9ce0-e288aa84f4ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "54e6af37-0392-4caf-a4a7-d6675d4e6035" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105525Z:54e6af37-0392-4caf-a4a7-d6675d4e6035" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-correlation-request-id": [ "9220f83f-4b06-421c-8152-332eb77696ed" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051559Z:9220f83f-4b06-421c-8152-332eb77696ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:15:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+2": { @@ -83,12 +83,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "e1bb1e2f-45ef-4ed6-a518-337c5cb0f94b" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "e5c8a22b-7f1d-45a4-a7d4-32ebd83803fa" ], "CommandName": [ "Az.MySql\\Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -99,21 +99,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "16577c7a-091f-4ad0-bd7c-8f467b344886" ], + "x-ms-request-id": [ "a105431f-76b9-4aaa-b889-1916cace7c07" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "c6719b91-4407-4794-ab80-14756006d406" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105526Z:c6719b91-4407-4794-ab80-14756006d406" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "63fcd9ab-5c59-4746-8b44-4ce91e9cdd16" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051600Z:63fcd9ab-5c59-4746-8b44-4ce91e9cdd16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:25 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:15:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+3": { @@ -122,51 +122,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "e4d7974e-6ae5-4020-8e8f-bf1d487a00b4" ], - "CommandName": [ "Get-AzMySqlServer" ], - "FullCommandName": [ "Get-AzMySqlServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "831b9cd4-4e4e-4d97-be7b-dc24e9c61d63" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "47a7cfe4-c823-453b-a7f7-994be5bb5bad" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105527Z:47a7cfe4-c823-453b-a7f7-994be5bb5bad" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:26 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "905" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" - } - }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "a63cb58c-9208-4154-bf81-952bb20a0a06" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "0d7a708d-3385-4b00-b64c-b7e87c09ede5" ], "CommandName": [ "Az.MySql\\Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -177,74 +138,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "828fb2af-07c3-4460-97e0-fa96f1606260" ], + "x-ms-request-id": [ "4b614e87-fec6-4819-ad38-031dfcc89c19" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "d6594a6b-a61f-4b53-9cfe-a48cbf6e428d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105527Z:d6594a6b-a61f-4b53-9cfe-a48cbf6e428d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "582c4ee4-8e56-4481-9677-aa2ac9b92fa7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051600Z:582c4ee4-8e56-4481-9677-aa2ac9b92fa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:16:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "8c6cca7b-a536-433a-bfbd-671e6dfcf006" ], - "CommandName": [ "Get-AzMySqlServer" ], - "FullCommandName": [ "Get-AzMySqlServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "54e94fd9-ea4d-4b81-85aa-4b7c90979756" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "442c49bf-a7b8-4c93-8ed0-15fa789a96e4" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105527Z:442c49bf-a7b8-4c93-8ed0-15fa789a96e4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "905" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" - } - }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+6": { + "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+4": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "2cd75bb4-a9b2-443c-b01e-395bf230e1db" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "46cab763-6454-4d60-a168-e50a4d2d21ae" ], "CommandName": [ "Az.MySql\\Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -255,113 +177,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5813a999-7149-4bff-9c8d-e5840317c94d" ], + "x-ms-request-id": [ "172dc265-964c-4cc0-bb0e-81d6acd06f2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "65aab380-1114-4121-a0ba-b64ae04cb1c5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105530Z:65aab380-1114-4121-a0ba-b64ae04cb1c5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "05c4b7f6-70c9-4d93-8301-f0c4b6772b12" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051601Z:05c4b7f6-70c9-4d93-8301-f0c4b6772b12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:29 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:16:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "21" ], - "x-ms-client-request-id": [ "a643c874-2769-4d3d-909f-994f6210a037" ], - "CommandName": [ "Get-AzMySqlServer" ], - "FullCommandName": [ "Get-AzMySqlServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4f8fae90-9c4a-4a09-8580-b8eaa61ea7b9" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-correlation-request-id": [ "427b33b4-fcab-49de-a7b8-31467663dc88" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105531Z:427b33b4-fcab-49de-a7b8-31467663dc88" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "905" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" - } - }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+8": { + "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+5": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "ab9b619a-7e4c-4afa-89db-f5fdc1bde6f2" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "b1698ce7-c92a-4d41-bbe1-73d7105284d3" ], "CommandName": [ "Az.MySql\\Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3d0b61c0-26af-464c-b887-13a6baf81f22" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "77c2daba-cab3-4d19-8089-88e4a91d849b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105531Z:77c2daba-cab3-4d19-8089-88e4a91d849b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "905" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" - } - }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+9": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "9d825885-a393-4ecd-8bc6-57e459613bbb" ], - "CommandName": [ "Get-AzMySqlServer" ], - "FullCommandName": [ "Get-AzMySqlServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -372,74 +216,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "25b8d37d-de47-45d1-a6c4-f5b346fb698f" ], + "x-ms-request-id": [ "7425a73d-f6a8-4e17-b536-25f12bab355a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "9310da9f-327d-47fa-9427-947daa49ba1b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105531Z:9310da9f-327d-47fa-9427-947daa49ba1b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "316e6b08-9830-4ebb-a084-90b977654e41" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051601Z:316e6b08-9830-4ebb-a084-90b977654e41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:31 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:16:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+10": { + "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+6": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "24" ], - "x-ms-client-request-id": [ "64135101-ec5c-4b7d-9ccc-7623e0266b77" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "9d3eb22d-fe5a-4449-933d-7e8a337a4ee1" ], "CommandName": [ "Az.MySql\\Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "af06eb7a-bd96-48fe-9ba6-dabfe83b2c00" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "x-ms-correlation-request-id": [ "9f563434-6ce2-4b90-941d-90b488a8da52" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105532Z:9f563434-6ce2-4b90-941d-90b488a8da52" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:31 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "905" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" - } - }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "ff1a666e-07e2-447d-9dfa-a5720950c11d" ], - "CommandName": [ "Get-AzMySqlServer" ], - "FullCommandName": [ "Get-AzMySqlServer_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -450,35 +255,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "030c11ba-4828-48ff-bb80-196f9ca3d409" ], + "x-ms-request-id": [ "4d837d7b-9622-4981-850d-2a009b227b0b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "x-ms-correlation-request-id": [ "3c09e3bc-f806-4d62-9f71-5791aaa6fc05" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105532Z:3c09e3bc-f806-4d62-9f71-5791aaa6fc05" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "39a6ec2e-c629-4568-857e-c522d52f48b6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051601Z:39a6ec2e-c629-4568-857e-c522d52f48b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:31 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:16:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+12": { + "Get-AzMySqlConnectionString+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+7": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "16f3a3eb-bc16-4670-9a3a-24389a4edf4a" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "f1c27efb-e75e-4c97-94e5-8a187c53d15f" ], "CommandName": [ "Az.MySql\\Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -489,21 +294,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "762c2c77-7680-420f-babc-ca904f4da13d" ], + "x-ms-request-id": [ "6df02656-7980-4f42-83e1-adea0c5a73ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-correlation-request-id": [ "5588d53b-bf79-4463-a06e-ccb0f0e8e30b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105532Z:5588d53b-bf79-4463-a06e-ccb0f0e8e30b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "84e5fb63-7320-4de3-9d40-812fd8527d46" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T051602Z:84e5fb63-7320-4de3-9d40-812fd8527d46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:32 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:16:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } } } \ No newline at end of file diff --git a/src/MySql/test/Get-AzMySqlFirewallRule.Recording.json b/src/MySql/test/Get-AzMySqlFirewallRule.Recording.json index d0cd6a8d8363..f81bce1b53ce 100644 --- a/src/MySql/test/Get-AzMySqlFirewallRule.Recording.json +++ b/src/MySql/test/Get-AzMySqlFirewallRule.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "27" ], - "x-ms-client-request-id": [ "f8b3e6dc-7d63-4c32-a51e-23d8d9a9604f" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/5d3bda53-95ad-40c2-9d3f-3d8933b1bd5f?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6be5f02d-99c6-48a2-b817-a102f1802474?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5d3bda53-95ad-40c2-9d3f-3d8933b1bd5f?api-version=2017-12-01" ], - "x-ms-request-id": [ "5d3bda53-95ad-40c2-9d3f-3d8933b1bd5f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6be5f02d-99c6-48a2-b817-a102f1802474?api-version=2017-12-01" ], + "x-ms-request-id": [ "6be5f02d-99c6-48a2-b817-a102f1802474" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "ec9c2162-63ab-4e36-ba8d-b60603bbe17d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105535Z:ec9c2162-63ab-4e36-ba8d-b60603bbe17d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "b95e08d1-077b-40e9-a67f-ce4ebe40de4a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052427Z:b95e08d1-077b-40e9-a67f-ce4ebe40de4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:34 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:24:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T10:55:34.11Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T05:24:25.77Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5d3bda53-95ad-40c2-9d3f-3d8933b1bd5f?api-version=2017-12-01+2": { + "Get-AzMySqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6be5f02d-99c6-48a2-b817-a102f1802474?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5d3bda53-95ad-40c2-9d3f-3d8933b1bd5f?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6be5f02d-99c6-48a2-b817-a102f1802474?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "27", "28" ], - "x-ms-client-request-id": [ "f8b3e6dc-7d63-4c32-a51e-23d8d9a9604f", "f8b3e6dc-7d63-4c32-a51e-23d8d9a9604f" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "dbe2b2a8-aa9d-46f3-8793-76d592cadceb", "dbe2b2a8-aa9d-46f3-8793-76d592cadceb" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9d5312f3-9ee2-4092-b172-0a7a8d408141" ], + "x-ms-request-id": [ "a1115fcb-23bd-40bc-88ea-16ee11160cff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-correlation-request-id": [ "4ff11d4f-ab60-4af4-b5f5-afe3e27c58b2" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105550Z:4ff11d4f-ab60-4af4-b5f5-afe3e27c58b2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-correlation-request-id": [ "9e9cbde0-b675-4805-9767-8a0b24261b18" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052442Z:9e9cbde0-b675-4805-9767-8a0b24261b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:50 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:24:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"5d3bda53-95ad-40c2-9d3f-3d8933b1bd5f\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T10:55:34.11Z\"}" + "Content": "{\"name\":\"6be5f02d-99c6-48a2-b817-a102f1802474\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T05:24:25.77Z\"}" } }, "Get-AzMySqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "27", "28", "29" ], - "x-ms-client-request-id": [ "f8b3e6dc-7d63-4c32-a51e-23d8d9a9604f", "f8b3e6dc-7d63-4c32-a51e-23d8d9a9604f", "f8b3e6dc-7d63-4c32-a51e-23d8d9a9604f" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "dbe2b2a8-aa9d-46f3-8793-76d592cadceb", "dbe2b2a8-aa9d-46f3-8793-76d592cadceb", "dbe2b2a8-aa9d-46f3-8793-76d592cadceb" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "44c7dff0-c2e7-4565-8d3a-c67b70aa7e7c" ], + "x-ms-request-id": [ "009d1164-cc43-4426-b6ee-f48fb2a9a09d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-correlation-request-id": [ "b283187a-cbac-4887-9e68-584a3c61040c" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105551Z:b283187a-cbac-4887-9e68-584a3c61040c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "980ac573-898b-4659-96ae-36127e2d0919" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052442Z:980ac573-898b-4659-96ae-36127e2d0919" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:50 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:24:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -128,12 +121,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "bb9787cf-55c9-4409-b997-5f8ec1cd3963" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "3e4a617c-bca1-496b-acd9-86556712bbc7" ], "CommandName": [ "Get-AzMySqlFirewallRule" ], "FullCommandName": [ "Get-AzMySqlFirewallRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,14 +137,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "03935089-1e65-48a2-81ce-92b2a0cb7351" ], + "x-ms-request-id": [ "e11bdb2b-051e-4441-932e-8fcb44aad0c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-correlation-request-id": [ "60287e1c-0c81-4aa7-85c0-2c38bb55f6f1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105551Z:60287e1c-0c81-4aa7-85c0-2c38bb55f6f1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "54e48022-6517-4eb4-a0e3-ac4c10d0ea9d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052443Z:54e48022-6517-4eb4-a0e3-ac4c10d0ea9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:24:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "317" ], @@ -167,12 +160,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "ef806f1d-2fe0-4d19-ac6e-969e7626ec5a" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "ea402944-a618-4c64-bccf-7d672fce0e43" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -183,38 +176,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a0fe98ac-ab84-42fc-a143-e4f0905a1843?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713?api-version=2017-12-01" ], - "x-ms-request-id": [ "4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a0fe98ac-ab84-42fc-a143-e4f0905a1843?api-version=2017-12-01" ], + "x-ms-request-id": [ "a0fe98ac-ab84-42fc-a143-e4f0905a1843" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "c7718b01-229d-4195-aa0d-4bedfdda472a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105553Z:c7718b01-229d-4195-aa0d-4bedfdda472a" ], + "x-ms-correlation-request-id": [ "300ebabc-6b6b-4f81-933a-99a9012b911f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052444Z:300ebabc-6b6b-4f81-933a-99a9012b911f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:55:53 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:24:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T10:55:52.127Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-07-24T05:24:43.817Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713?api-version=2017-12-01+6": { + "Get-AzMySqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a0fe98ac-ab84-42fc-a143-e4f0905a1843?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a0fe98ac-ab84-42fc-a143-e4f0905a1843?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "31", "32" ], - "x-ms-client-request-id": [ "ef806f1d-2fe0-4d19-ac6e-969e7626ec5a", "ef806f1d-2fe0-4d19-ac6e-969e7626ec5a" ], + "x-ms-unique-id": [ "5", "6" ], + "x-ms-client-request-id": [ "ea402944-a618-4c64-bccf-7d672fce0e43", "ea402944-a618-4c64-bccf-7d672fce0e43" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -226,35 +219,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "0ed871c0-9838-4589-b344-e35454db533e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-request-id": [ "6afda5af-f5bc-4494-86b6-6117f48d241f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "1bc907cf-7a8c-401b-955b-c1cc6253fabb" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105608Z:1bc907cf-7a8c-401b-955b-c1cc6253fabb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "70a04b38-ec02-4784-a248-402028c4b4f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052500Z:70a04b38-ec02-4784-a248-402028c4b4f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T10:55:52.127Z\"}" + "Content": "{\"name\":\"a0fe98ac-ab84-42fc-a143-e4f0905a1843\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T05:24:43.817Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713?api-version=2017-12-01+7": { + "Get-AzMySqlFirewallRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a0fe98ac-ab84-42fc-a143-e4f0905a1843?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4b59e4ea-7bdf-44b5-a3c0-ad9b0bc57713?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a0fe98ac-ab84-42fc-a143-e4f0905a1843?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "31", "32", "33" ], - "x-ms-client-request-id": [ "ef806f1d-2fe0-4d19-ac6e-969e7626ec5a", "ef806f1d-2fe0-4d19-ac6e-969e7626ec5a", "ef806f1d-2fe0-4d19-ac6e-969e7626ec5a" ], + "x-ms-unique-id": [ "5", "6", "7" ], + "x-ms-client-request-id": [ "ea402944-a618-4c64-bccf-7d672fce0e43", "ea402944-a618-4c64-bccf-7d672fce0e43", "ea402944-a618-4c64-bccf-7d672fce0e43" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -265,14 +258,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2972f41e-08b5-4b01-acfd-54094492f60d" ], + "x-ms-request-id": [ "49934721-2166-4352-8ec5-02a80967f46d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-correlation-request-id": [ "02e265f4-a816-47de-8ba8-e084cab703f7" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105609Z:02e265f4-a816-47de-8ba8-e084cab703f7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "5931d3f2-27d2-430d-8b5e-286a31b87f7f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052500Z:5931d3f2-27d2-430d-8b5e-286a31b87f7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:09 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -287,13 +280,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "35b73bb6-f279-470e-bf74-e27b63d51dcd" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -305,38 +291,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/000d906f-b25f-49fe-be1d-42bc9bd5693a?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/32c7fbff-0076-4284-88ed-a58c6c5dc049?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/000d906f-b25f-49fe-be1d-42bc9bd5693a?api-version=2017-12-01" ], - "x-ms-request-id": [ "000d906f-b25f-49fe-be1d-42bc9bd5693a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/32c7fbff-0076-4284-88ed-a58c6c5dc049?api-version=2017-12-01" ], + "x-ms-request-id": [ "32c7fbff-0076-4284-88ed-a58c6c5dc049" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "7b2d29e6-5366-4e59-b5db-dcfb5d98c792" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105610Z:7b2d29e6-5366-4e59-b5db-dcfb5d98c792" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "169e67a1-a93c-4797-a0ba-f611062bc57b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052502Z:169e67a1-a93c-4797-a0ba-f611062bc57b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:10 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T10:56:09.783Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T05:25:01.13Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/000d906f-b25f-49fe-be1d-42bc9bd5693a?api-version=2017-12-01+2": { + "Get-AzMySqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/32c7fbff-0076-4284-88ed-a58c6c5dc049?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/000d906f-b25f-49fe-be1d-42bc9bd5693a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/32c7fbff-0076-4284-88ed-a58c6c5dc049?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "34", "35" ], - "x-ms-client-request-id": [ "35b73bb6-f279-470e-bf74-e27b63d51dcd", "35b73bb6-f279-470e-bf74-e27b63d51dcd" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "8", "9" ], + "x-ms-client-request-id": [ "21907da2-899e-45a9-b460-d9194c20dbe3", "21907da2-899e-45a9-b460-d9194c20dbe3" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -348,21 +334,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "32725ba6-e0c8-4c76-a386-6c059564ae1b" ], + "x-ms-request-id": [ "beffded2-b008-4835-9f6c-8c739a696135" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-correlation-request-id": [ "b1dc349c-81fd-4213-a06b-085c0b80051a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105626Z:b1dc349c-81fd-4213-a06b-085c0b80051a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "e291441c-9a14-458b-a210-baef790d3b16" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052517Z:e291441c-9a14-458b-a210-baef790d3b16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:25 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"000d906f-b25f-49fe-be1d-42bc9bd5693a\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T10:56:09.783Z\"}" + "Content": "{\"name\":\"32c7fbff-0076-4284-88ed-a58c6c5dc049\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T05:25:01.13Z\"}" } }, "Get-AzMySqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -371,12 +357,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "34", "35", "36" ], - "x-ms-client-request-id": [ "35b73bb6-f279-470e-bf74-e27b63d51dcd", "35b73bb6-f279-470e-bf74-e27b63d51dcd", "35b73bb6-f279-470e-bf74-e27b63d51dcd" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "8", "9", "10" ], + "x-ms-client-request-id": [ "21907da2-899e-45a9-b460-d9194c20dbe3", "21907da2-899e-45a9-b460-d9194c20dbe3", "21907da2-899e-45a9-b460-d9194c20dbe3" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,14 +373,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8fd672e3-c494-473c-b7bb-db68629f6fb8" ], + "x-ms-request-id": [ "3d87f33a-dedc-4057-b1ac-052f5db64f81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-correlation-request-id": [ "68673132-29a5-4407-81bd-53584c5d6473" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105626Z:68673132-29a5-4407-81bd-53584c5d6473" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "7d3e8aaf-f61b-4282-8e23-e83ace68e7d3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052518Z:7d3e8aaf-f61b-4282-8e23-e83ace68e7d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -410,12 +396,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "37" ], - "x-ms-client-request-id": [ "43640d5f-1c13-4e60-a38c-a729e7b9a402" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "531dbebe-38c0-44c9-a721-7db822aa72ab" ], "CommandName": [ "Get-AzMySqlFirewallRule" ], "FullCommandName": [ "Get-AzMySqlFirewallRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -426,14 +412,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d9760389-6201-4b57-88b5-3da0332216d1" ], + "x-ms-request-id": [ "1e46c895-6164-42e0-9998-6654bf46394b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-correlation-request-id": [ "834a0262-4d28-444d-b0b4-7e76e19286b5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105627Z:834a0262-4d28-444d-b0b4-7e76e19286b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "dcd82b13-59ab-4de3-8f9d-3909b08b6123" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052518Z:dcd82b13-59ab-4de3-8f9d-3909b08b6123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -449,12 +435,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "38" ], - "x-ms-client-request-id": [ "90120534-158d-4486-b0b4-1edf290f4786" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "82a047a1-6ab2-4eec-b8d1-de99643f0aab" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -465,38 +451,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a80b70b1-0863-4ca3-802f-6c213eb1fed5?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a80b70b1-0863-4ca3-802f-6c213eb1fed5?api-version=2017-12-01" ], - "x-ms-request-id": [ "a80b70b1-0863-4ca3-802f-6c213eb1fed5" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c?api-version=2017-12-01" ], + "x-ms-request-id": [ "ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "73f8df5b-9c90-46b7-97d7-b8b6af1f81ae" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105628Z:73f8df5b-9c90-46b7-97d7-b8b6af1f81ae" ], + "x-ms-correlation-request-id": [ "1a4ef829-c652-4e52-9ea7-807ed84d5b30" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052520Z:1a4ef829-c652-4e52-9ea7-807ed84d5b30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:28 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "83" ], + "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T10:56:27.47Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-07-24T05:25:18.897Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a80b70b1-0863-4ca3-802f-6c213eb1fed5?api-version=2017-12-01+6": { + "Get-AzMySqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a80b70b1-0863-4ca3-802f-6c213eb1fed5?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "38", "39" ], - "x-ms-client-request-id": [ "90120534-158d-4486-b0b4-1edf290f4786", "90120534-158d-4486-b0b4-1edf290f4786" ], + "x-ms-unique-id": [ "12", "13" ], + "x-ms-client-request-id": [ "82a047a1-6ab2-4eec-b8d1-de99643f0aab", "82a047a1-6ab2-4eec-b8d1-de99643f0aab" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -508,35 +494,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "23ed1118-5d9a-4151-9298-568dd6525a62" ], + "x-ms-request-id": [ "f0de194a-5399-49be-ae04-f2c296b20882" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], - "x-ms-correlation-request-id": [ "1d792e09-0a97-4f21-bb51-279883d9612d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105643Z:1d792e09-0a97-4f21-bb51-279883d9612d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "416d1067-598d-467a-a457-b023a05f323f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052535Z:416d1067-598d-467a-a457-b023a05f323f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:43 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"a80b70b1-0863-4ca3-802f-6c213eb1fed5\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T10:56:27.47Z\"}" + "Content": "{\"name\":\"ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T05:25:18.897Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a80b70b1-0863-4ca3-802f-6c213eb1fed5?api-version=2017-12-01+7": { + "Get-AzMySqlFirewallRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a80b70b1-0863-4ca3-802f-6c213eb1fed5?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ec6ea1ad-4667-4ae5-aa62-19a01bd6b18c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "38", "39", "40" ], - "x-ms-client-request-id": [ "90120534-158d-4486-b0b4-1edf290f4786", "90120534-158d-4486-b0b4-1edf290f4786", "90120534-158d-4486-b0b4-1edf290f4786" ], + "x-ms-unique-id": [ "12", "13", "14" ], + "x-ms-client-request-id": [ "82a047a1-6ab2-4eec-b8d1-de99643f0aab", "82a047a1-6ab2-4eec-b8d1-de99643f0aab", "82a047a1-6ab2-4eec-b8d1-de99643f0aab" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -547,14 +533,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7c7b68a4-8062-462e-8881-4bc85055ddc9" ], + "x-ms-request-id": [ "fb19cf2b-b38b-4288-9512-cd2ac988cfb8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], - "x-ms-correlation-request-id": [ "66ce741e-4247-4a52-af22-fa9bc6f001b2" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105644Z:66ce741e-4247-4a52-af22-fa9bc6f001b2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "7863e58d-5843-44ef-b30b-3b5bd3bf2402" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052535Z:7863e58d-5843-44ef-b30b-3b5bd3bf2402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:43 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -569,13 +555,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "41" ], - "x-ms-client-request-id": [ "c7699014-deb9-4956-9e30-9fdd905948f5" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -587,38 +566,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/86adc545-d259-47f2-be4a-dfb3dfddb773?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45403173-0f51-4d6c-be03-f0b08a4ea1fa?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/86adc545-d259-47f2-be4a-dfb3dfddb773?api-version=2017-12-01" ], - "x-ms-request-id": [ "86adc545-d259-47f2-be4a-dfb3dfddb773" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45403173-0f51-4d6c-be03-f0b08a4ea1fa?api-version=2017-12-01" ], + "x-ms-request-id": [ "45403173-0f51-4d6c-be03-f0b08a4ea1fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "61a6d769-45e8-4b08-bcef-90542a174066" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105645Z:61a6d769-45e8-4b08-bcef-90542a174066" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "5a084777-3221-4c9e-865b-0b29ee2f7b59" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052537Z:5a084777-3221-4c9e-865b-0b29ee2f7b59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:56:45 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T10:56:44.58Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T05:25:36.24Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/86adc545-d259-47f2-be4a-dfb3dfddb773?api-version=2017-12-01+2": { + "Get-AzMySqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45403173-0f51-4d6c-be03-f0b08a4ea1fa?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/86adc545-d259-47f2-be4a-dfb3dfddb773?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45403173-0f51-4d6c-be03-f0b08a4ea1fa?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "41", "42" ], - "x-ms-client-request-id": [ "c7699014-deb9-4956-9e30-9fdd905948f5", "c7699014-deb9-4956-9e30-9fdd905948f5" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "15", "16" ], + "x-ms-client-request-id": [ "667b8aa2-e2a6-4ce3-86ea-752034fe44c9", "667b8aa2-e2a6-4ce3-86ea-752034fe44c9" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -630,21 +609,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f83390d4-5ac7-4b17-a9e7-e506d72d36b5" ], + "x-ms-request-id": [ "58352c06-b222-4195-9ad1-19deb7f01596" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], - "x-ms-correlation-request-id": [ "efb2c0cb-65b3-4614-a152-77495dbd23d0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105701Z:efb2c0cb-65b3-4614-a152-77495dbd23d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "b7ee91e7-c5ff-4f53-82b6-efe06e557290" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052552Z:b7ee91e7-c5ff-4f53-82b6-efe06e557290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:57:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"86adc545-d259-47f2-be4a-dfb3dfddb773\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T10:56:44.58Z\"}" + "Content": "{\"name\":\"45403173-0f51-4d6c-be03-f0b08a4ea1fa\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T05:25:36.24Z\"}" } }, "Get-AzMySqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -653,12 +632,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "41", "42", "43" ], - "x-ms-client-request-id": [ "c7699014-deb9-4956-9e30-9fdd905948f5", "c7699014-deb9-4956-9e30-9fdd905948f5", "c7699014-deb9-4956-9e30-9fdd905948f5" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "15", "16", "17" ], + "x-ms-client-request-id": [ "667b8aa2-e2a6-4ce3-86ea-752034fe44c9", "667b8aa2-e2a6-4ce3-86ea-752034fe44c9", "667b8aa2-e2a6-4ce3-86ea-752034fe44c9" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -669,14 +648,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1ea79dd2-ff61-40c4-adc5-77e9cccd9857" ], + "x-ms-request-id": [ "07f96ea6-2b68-4e52-9272-4fb792a05cf4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], - "x-ms-correlation-request-id": [ "ae3a9674-4804-401f-811c-f4bf805e6c7b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105701Z:ae3a9674-4804-401f-811c-f4bf805e6c7b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "17199711-5cc8-49bd-9ebf-216b6889b78b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052553Z:17199711-5cc8-49bd-9ebf-216b6889b78b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:57:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -692,12 +671,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "c9c5bc40-e9be-4bd2-b339-b2169e5a9ee5" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "06a99d7a-a1eb-4181-8208-8349db0399cf" ], "CommandName": [ "Get-AzMySqlFirewallRule" ], "FullCommandName": [ "Get-AzMySqlFirewallRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -708,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "375339e6-610e-4053-b268-0fdf8c714c02" ], + "x-ms-request-id": [ "0bbbe837-7a21-4c4e-b696-1b5ec17e39aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], - "x-ms-correlation-request-id": [ "26abb6af-5195-408e-94c5-b596b3a6401a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105702Z:26abb6af-5195-408e-94c5-b596b3a6401a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "c95af1da-322f-454a-88ea-bdc5a7b15f7c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052553Z:c95af1da-322f-454a-88ea-bdc5a7b15f7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:57:01 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -731,12 +710,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "45" ], - "x-ms-client-request-id": [ "40900eff-a0b8-4481-9629-4f19dd3546c9" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "ea367a72-86e4-4c85-8ed9-bce0ac43e35a" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -747,38 +726,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/efa876b2-4d49-4f9c-877f-6370a2fc448d?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/03d7b0c5-6fc4-44b0-a051-0df46b347c8c?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/efa876b2-4d49-4f9c-877f-6370a2fc448d?api-version=2017-12-01" ], - "x-ms-request-id": [ "efa876b2-4d49-4f9c-877f-6370a2fc448d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/03d7b0c5-6fc4-44b0-a051-0df46b347c8c?api-version=2017-12-01" ], + "x-ms-request-id": [ "03d7b0c5-6fc4-44b0-a051-0df46b347c8c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-correlation-request-id": [ "fc48b503-ff2a-4abd-8846-d8300410442c" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105703Z:fc48b503-ff2a-4abd-8846-d8300410442c" ], + "x-ms-correlation-request-id": [ "a7485db5-13ad-4c35-b492-0a532e9a0b96" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052555Z:a7485db5-13ad-4c35-b492-0a532e9a0b96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:57:02 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:25:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "82" ], + "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T10:57:02.3Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-07-24T05:25:54.037Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/efa876b2-4d49-4f9c-877f-6370a2fc448d?api-version=2017-12-01+6": { + "Get-AzMySqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/03d7b0c5-6fc4-44b0-a051-0df46b347c8c?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/efa876b2-4d49-4f9c-877f-6370a2fc448d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/03d7b0c5-6fc4-44b0-a051-0df46b347c8c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "45", "46" ], - "x-ms-client-request-id": [ "40900eff-a0b8-4481-9629-4f19dd3546c9", "40900eff-a0b8-4481-9629-4f19dd3546c9" ], + "x-ms-unique-id": [ "19", "20" ], + "x-ms-client-request-id": [ "ea367a72-86e4-4c85-8ed9-bce0ac43e35a", "ea367a72-86e4-4c85-8ed9-bce0ac43e35a" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -790,35 +769,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f5515b56-54b6-4fb2-a154-e1c116f00301" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-request-id": [ "40ef670a-398f-47ff-98cc-ee07cf8925e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "0a4b20b5-21ed-42a9-9e0f-bf0cbe4088b7" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105718Z:0a4b20b5-21ed-42a9-9e0f-bf0cbe4088b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "1732cded-6589-46a9-8b19-f79f7e410042" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052610Z:1732cded-6589-46a9-8b19-f79f7e410042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:57:18 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:26:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "105" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"efa876b2-4d49-4f9c-877f-6370a2fc448d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T10:57:02.3Z\"}" + "Content": "{\"name\":\"03d7b0c5-6fc4-44b0-a051-0df46b347c8c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T05:25:54.037Z\"}" } }, - "Get-AzMySqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/efa876b2-4d49-4f9c-877f-6370a2fc448d?api-version=2017-12-01+7": { + "Get-AzMySqlFirewallRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/03d7b0c5-6fc4-44b0-a051-0df46b347c8c?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/efa876b2-4d49-4f9c-877f-6370a2fc448d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/03d7b0c5-6fc4-44b0-a051-0df46b347c8c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "45", "46", "47" ], - "x-ms-client-request-id": [ "40900eff-a0b8-4481-9629-4f19dd3546c9", "40900eff-a0b8-4481-9629-4f19dd3546c9", "40900eff-a0b8-4481-9629-4f19dd3546c9" ], + "x-ms-unique-id": [ "19", "20", "21" ], + "x-ms-client-request-id": [ "ea367a72-86e4-4c85-8ed9-bce0ac43e35a", "ea367a72-86e4-4c85-8ed9-bce0ac43e35a", "ea367a72-86e4-4c85-8ed9-bce0ac43e35a" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -829,14 +808,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "afed9e8e-79a9-4a0a-b3a0-6e06cd8f07ee" ], + "x-ms-request-id": [ "60548a2b-d315-4333-86ec-94d49b21c453" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], - "x-ms-correlation-request-id": [ "e89e325d-8ac1-4f6a-a78e-7d1a4d741d03" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T105719Z:e89e325d-8ac1-4f6a-a78e-7d1a4d741d03" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "78dbb9c6-161d-4f33-b0fd-a45b3dc8714d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T052610Z:78dbb9c6-161d-4f33-b0fd-a45b3dc8714d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 10:57:19 GMT" ] + "Date": [ "Fri, 24 Jul 2020 05:26:10 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Get-AzMySqlReplica.Recording.json b/src/MySql/test/Get-AzMySqlReplica.Recording.json index 83b84860b389..b9780365f810 100644 --- a/src/MySql/test/Get-AzMySqlReplica.Recording.json +++ b/src/MySql/test/Get-AzMySqlReplica.Recording.json @@ -5,12 +5,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "13" ], - "x-ms-client-request-id": [ "ff876df1-11dc-4dd4-971c-ea35ac02e695" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "d7c019d8-57ee-4f6a-b2e1-37e77d8b8284" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "99ee69d5-8c7e-46e7-87db-e8b076c9cce2" ], + "x-ms-request-id": [ "8d68a95e-186c-4b7c-b641-ca5f3e575539" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "773fbc41-1105-4d36-99e4-65da8e33473d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075314Z:773fbc41-1105-4d36-99e4-65da8e33473d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "acd0d7ad-7027-4d41-a0d8-71de0490966d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075002Z:acd0d7ad-7027-4d41-a0d8-71de0490966d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:53:14 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:50:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "905" ], + "Content-Length": [ "907" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-09T08:01:09.513+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Get-AzMySqlReplica+[NoContext]+List+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+2": { @@ -44,13 +44,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -62,38 +55,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01" ], - "x-ms-request-id": [ "4296d509-0a03-4e04-9b37-3c574709b6ac" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01" ], + "x-ms-request-id": [ "ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "f33c5050-f768-40d9-ae34-e389817e92c6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075320Z:f33c5050-f768-40d9-ae34-e389817e92c6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "3841a27a-3348-4760-bcb1-3629c304f6b6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075008Z:3841a27a-3348-4760-bcb1-3629c304f6b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:53:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:50:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+3": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,35 +98,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "25ff85ca-680c-4fcd-bacc-a677e5d3407c" ], + "x-ms-request-id": [ "91cbaebd-68b5-43ca-9084-21d70637ff32" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "aab867ac-f3c6-42c5-9f04-67a018e00cce" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075351Z:aab867ac-f3c6-42c5-9f04-67a018e00cce" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "10cd950a-bf63-4c1b-9748-cc6690129bb5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075038Z:10cd950a-bf63-4c1b-9748-cc6690129bb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:53:50 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:50:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+4": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -145,35 +138,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "a0170812-bf4c-4bf9-93c8-e8c926cb12a8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-request-id": [ "3fe6909a-026f-4eb8-8437-3b42340c7965" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "eef84d7b-24f3-4e78-b8dd-cc035112ff6c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075421Z:eef84d7b-24f3-4e78-b8dd-cc035112ff6c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "1bc1ea1d-155e-42a7-bf30-abe6eebc3b7c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075108Z:1bc1ea1d-155e-42a7-bf30-abe6eebc3b7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:54:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:51:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+5": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -185,35 +178,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "01b25b79-fdee-4f06-b099-2d0f80fb5330" ], + "x-ms-request-id": [ "5539f967-2541-43e7-891a-2ef7be5dc7e6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "a91eb13b-4490-455e-9451-9c7f871a79f0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075452Z:a91eb13b-4490-455e-9451-9c7f871a79f0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "310e1172-05d1-4967-b3e1-33f7de40be57" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075139Z:310e1172-05d1-4967-b3e1-33f7de40be57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:54:52 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:51:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+6": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -225,35 +218,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "b568c493-d5b0-4cda-8246-e16207f29964" ], + "x-ms-request-id": [ "d74f0c8f-346e-4569-ba63-6acab598d3eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "bb01408f-f2f2-4382-b3a9-5da5cc74577e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075522Z:bb01408f-f2f2-4382-b3a9-5da5cc74577e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "c0bd05f2-efc6-4d8d-a11f-26a897795257" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075209Z:c0bd05f2-efc6-4d8d-a11f-26a897795257" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:55:22 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:52:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+7": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -265,35 +258,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "60229091-5e97-4479-be76-690cc6b42987" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-request-id": [ "ede55f2c-d9d6-447d-8629-01f8d42cfacb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "ae92ffce-887a-4425-a2a8-97d73d3e6986" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075553Z:ae92ffce-887a-4425-a2a8-97d73d3e6986" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "70fcb7dc-8502-46f2-9118-31710965e2fc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075239Z:70fcb7dc-8502-46f2-9118-31710965e2fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:55:52 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:52:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+8": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -305,35 +298,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "ed878b96-e44d-4aa6-b42c-5ddf57e33daf" ], + "x-ms-request-id": [ "42df4503-e9e3-453f-a70c-aa19107e071a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "c075a507-8f26-4c7d-b540-d0e8c2c8f34a" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075624Z:c075a507-8f26-4c7d-b540-d0e8c2c8f34a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "031a5b57-d3da-4c44-b91b-7ac482411acc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075310Z:031a5b57-d3da-4c44-b91b-7ac482411acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:56:23 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:53:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+9": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -345,35 +338,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "369e1bf7-2f7c-41a6-9f48-5e7b842dd962" ], + "x-ms-request-id": [ "744e310a-473b-444b-9cae-bd0ef6d828d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "0772b495-1786-4ed4-9156-19da403fc2bd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075654Z:0772b495-1786-4ed4-9156-19da403fc2bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "e75d32b6-e610-4a41-8f4a-a1c2a5c3474a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075340Z:e75d32b6-e610-4a41-8f4a-a1c2a5c3474a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:56:54 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:53:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+10": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -385,35 +378,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "9ffda2c9-533f-4288-81ee-c3bc45275260" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-request-id": [ "26440d29-924b-4909-a987-71961f8f4cce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "ab4f22d3-0e41-499a-80c7-da76ea26fcb6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075725Z:ab4f22d3-0e41-499a-80c7-da76ea26fcb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "6aa045ad-f30e-4680-a30f-2fb3dae287b4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075411Z:6aa045ad-f30e-4680-a30f-2fb3dae287b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:57:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:54:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+11": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -425,35 +418,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "30c39e1c-4478-4b7b-a3f7-15990c024a2c" ], + "x-ms-request-id": [ "322ef832-edf7-412b-87ef-86a59ca27508" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "740552a7-161f-45d9-a57a-86ecae9fe93b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075756Z:740552a7-161f-45d9-a57a-86ecae9fe93b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "80ad5bd0-5334-4b91-8258-d46595c278ba" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075441Z:80ad5bd0-5334-4b91-8258-d46595c278ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:57:55 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:54:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+12": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -465,35 +458,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "57870313-80f1-4f6a-ae4b-be0f3b9fb970" ], + "x-ms-request-id": [ "cfa534f1-2b57-4aff-9610-860b1b840d51" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "16b82111-5fc0-4a73-b116-11ca3a60fc81" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075826Z:16b82111-5fc0-4a73-b116-11ca3a60fc81" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "9b2ed281-59db-4b01-ad15-7183322c2e4f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075513Z:9b2ed281-59db-4b01-ad15-7183322c2e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:58:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:55:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+13": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -505,35 +498,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "981c53d1-490a-4068-bf13-73ad40c0fb9f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-request-id": [ "46011b18-34b2-4771-9fed-4f26384483fb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "c06ffdbf-8981-4cf7-b058-c59f0b571f39" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075856Z:c06ffdbf-8981-4cf7-b058-c59f0b571f39" ], + "x-ms-correlation-request-id": [ "83aa3f7e-bb2e-4577-92e4-bbd9c9e2cd94" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075543Z:83aa3f7e-bb2e-4577-92e4-bbd9c9e2cd94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:58:56 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:55:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+14": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -545,35 +538,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "161741a6-cea9-480f-b050-1017c11d5626" ], + "x-ms-request-id": [ "b06a2cef-27ec-45d6-b526-ce6812fe6635" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "x-ms-correlation-request-id": [ "869c9f1d-a0d9-4cbc-8188-ea4067a1ae6d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075927Z:869c9f1d-a0d9-4cbc-8188-ea4067a1ae6d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "8824a0a2-c016-410e-be2b-d4e449d10c27" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075613Z:8824a0a2-c016-410e-be2b-d4e449d10c27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:59:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:56:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+15": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -585,35 +578,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "cd52c061-9083-43cd-8e9c-b2404477bfa1" ], + "x-ms-request-id": [ "7455bac7-80fc-4f91-8c34-dc4cfd966b4a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-correlation-request-id": [ "1d0bdb8a-a524-4338-b31e-a7e3c8076cd6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T075958Z:1d0bdb8a-a524-4338-b31e-a7e3c8076cd6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "d5caaf0a-0e01-4099-9881-452e23d24a53" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075644Z:d5caaf0a-0e01-4099-9881-452e23d24a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 07:59:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:56:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+16": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -625,35 +618,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "361f9d3c-13c0-4d2a-9142-2daa75068656" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-request-id": [ "7cd7f861-ee5b-4db8-9be1-4d0caaf6b63a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "79ab8d28-4422-492c-84c5-271525434702" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080028Z:79ab8d28-4422-492c-84c5-271525434702" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "9d1adc5c-160a-4068-a074-47168f049533" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075714Z:9d1adc5c-160a-4068-a074-47168f049533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:00:28 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:57:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+17": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -665,35 +658,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "5d79a403-7a64-461d-bdc9-2ea0fb0ab5d8" ], + "x-ms-request-id": [ "142a01b7-c15b-4100-8118-d9fef64c1b75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-correlation-request-id": [ "188e9352-6c2b-4fe7-8e6f-5b115149a7ec" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080059Z:188e9352-6c2b-4fe7-8e6f-5b115149a7ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "2b13a3fb-d0de-4ea4-978c-c6ec78c10354" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075745Z:2b13a3fb-d0de-4ea4-978c-c6ec78c10354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:00:59 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:57:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+18": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -705,35 +698,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "7990a25f-43dc-4b9a-bde4-c4da0a0a7611" ], + "x-ms-request-id": [ "3edba23c-d98a-483b-91c5-e6bcedbb6db0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-correlation-request-id": [ "2d386913-c756-4c64-af9a-06d11055a0d8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080130Z:2d386913-c756-4c64-af9a-06d11055a0d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "04390cf3-b5b0-4d14-b520-b4f2ee415e58" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075815Z:04390cf3-b5b0-4d14-b520-b4f2ee415e58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:01:29 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:58:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+19": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -745,35 +738,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "f5dd2a26-faa3-49a2-a772-dfbba9795174" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-request-id": [ "d7a590a1-45d9-4614-a2a2-e3ba7619676f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "9bf798e0-590d-4024-9107-6afe113374f9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080200Z:9bf798e0-590d-4024-9107-6afe113374f9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "5ac5e3c5-8506-41a7-b174-0fa275962491" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075846Z:5ac5e3c5-8506-41a7-b174-0fa275962491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:02:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:58:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+20": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -785,75 +778,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "86af5277-a85f-45cb-b885-9ff1910f2fc8" ], + "x-ms-request-id": [ "d5e3df2e-e0e6-4402-b505-189d70e17cbe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-correlation-request-id": [ "0cf20c30-a4e0-40e3-bb6a-3c670c50b5fa" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080230Z:0cf20c30-a4e0-40e3-bb6a-3c670c50b5fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-correlation-request-id": [ "d0aeef13-f804-4ed5-b954-9164f1cb2384" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075917Z:d0aeef13-f804-4ed5-b954-9164f1cb2384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:02:30 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:59:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"InProgress\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" + "Content": "{\"name\":\"ff8b1ac5-5dfc-475a-a2c3-1fe41ef74520\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:50:07.763Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01+21": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4296d509-0a03-4e04-9b37-3c574709b6ac?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21" ], + "x-ms-client-request-id": [ "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc", "a8e8b952-d1fe-4bed-bf1c-a1d18ace9bdc" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "a5c879df-3d78-4a32-bd9e-615f938c3bbe" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-correlation-request-id": [ "e631211e-fde3-4b7e-b7a7-83d45fc8fb2d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080301Z:e631211e-fde3-4b7e-b7a7-83d45fc8fb2d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:00 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "106" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"name\":\"4296d509-0a03-4e04-9b37-3c574709b6ac\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-09T07:53:20.72Z\"}" - } - }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+22": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34" ], - "x-ms-client-request-id": [ "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9", "a20c0cf5-d5a9-4945-b1e5-fed910f2d6f9" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -864,35 +817,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e8d6b522-3ff9-4684-ac47-873439f54793" ], + "x-ms-request-id": [ "abc08585-0bd0-4c36-8780-3598f179caec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-correlation-request-id": [ "2e7adda4-2d95-4cc8-831e-849c6098b6bd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080301Z:2e7adda4-2d95-4cc8-831e-849c6098b6bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-correlation-request-id": [ "4b6cccf2-73bc-4221-8702-2b4f14f9ccca" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075917Z:4b6cccf2-73bc-4221-8702-2b4f14f9ccca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:59:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1061" ], + "Content-Length": [ "1063" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-09T08:05:21.563+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T08:01:19.783+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/replicas?api-version=2017-12-01+23": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/replicas?api-version=2017-12-01+22": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/replicas?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "f19afdf2-7380-4bdf-bcf8-4edb57046336" ], + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "19304014-1a24-4d07-88ff-e6eb47016052" ], "CommandName": [ "Get-AzMySqlReplica" ], "FullCommandName": [ "Get-AzMySqlReplica_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -903,35 +856,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c1731b1f-3a36-43ad-b6d2-114abf58de8d" ], + "x-ms-request-id": [ "e6a76dfd-ce32-40b8-b52e-6efa4a6ab567" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-correlation-request-id": [ "217696bb-b0fd-45bd-b068-e733c12549b5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080301Z:217696bb-b0fd-45bd-b068-e733c12549b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-correlation-request-id": [ "c31e5a09-082f-4be7-9dfe-d874a7f3067d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075918Z:c31e5a09-082f-4be7-9dfe-d874a7f3067d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:01 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:59:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1073" ], + "Content-Length": [ "1075" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-09T08:05:21.563+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T08:01:19.783+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}]}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+24": { + "Get-AzMySqlReplica+[NoContext]+List+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+23": { "Request": { "Method": "DELETE", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "36" ], - "x-ms-client-request-id": [ "678a46a6-41f3-419f-ac3f-dc30bb44aaa2" ], + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "ab80dd07-81f1-4f41-a867-13f99570c196" ], "CommandName": [ "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -942,38 +895,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c4f1b555-2565-4e92-b5f5-ce33e710df96?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1febca3d-6c67-4885-96a8-3b17d2aac22e?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c4f1b555-2565-4e92-b5f5-ce33e710df96?api-version=2017-12-01" ], - "x-ms-request-id": [ "c4f1b555-2565-4e92-b5f5-ce33e710df96" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1febca3d-6c67-4885-96a8-3b17d2aac22e?api-version=2017-12-01" ], + "x-ms-request-id": [ "1febca3d-6c67-4885-96a8-3b17d2aac22e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "ec60162b-ae6b-40e9-81e5-44fd5829ff41" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080303Z:ec60162b-ae6b-40e9-81e5-44fd5829ff41" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "5510987e-ce08-4eff-bb31-81e1a6f5b474" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075919Z:5510987e-ce08-4eff-bb31-81e1a6f5b474" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:02 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:59:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-09T08:03:03.263Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-07-24T07:59:18.913Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c4f1b555-2565-4e92-b5f5-ce33e710df96?api-version=2017-12-01+25": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1febca3d-6c67-4885-96a8-3b17d2aac22e?api-version=2017-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c4f1b555-2565-4e92-b5f5-ce33e710df96?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1febca3d-6c67-4885-96a8-3b17d2aac22e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "36", "37" ], - "x-ms-client-request-id": [ "678a46a6-41f3-419f-ac3f-dc30bb44aaa2", "678a46a6-41f3-419f-ac3f-dc30bb44aaa2" ], + "x-ms-unique-id": [ "23", "24" ], + "x-ms-client-request-id": [ "ab80dd07-81f1-4f41-a867-13f99570c196", "ab80dd07-81f1-4f41-a867-13f99570c196" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_DeleteViaIdentity", "Remove-AzMySqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -985,35 +938,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "bcf506ae-85c2-4228-81e1-580615faec3e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-request-id": [ "b29360c5-a79d-4a99-9347-b641e38e3263" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "a888dc36-1016-44e6-9577-eec146bab374" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080318Z:a888dc36-1016-44e6-9577-eec146bab374" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-correlation-request-id": [ "757b45c3-b23b-4878-ac89-dc319de4e2ce" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075934Z:757b45c3-b23b-4878-ac89-dc319de4e2ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:17 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:59:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c4f1b555-2565-4e92-b5f5-ce33e710df96\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-09T08:03:03.263Z\"}" + "Content": "{\"name\":\"1febca3d-6c67-4885-96a8-3b17d2aac22e\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:59:18.913Z\"}" } }, - "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c4f1b555-2565-4e92-b5f5-ce33e710df96?api-version=2017-12-01+26": { + "Get-AzMySqlReplica+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1febca3d-6c67-4885-96a8-3b17d2aac22e?api-version=2017-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c4f1b555-2565-4e92-b5f5-ce33e710df96?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1febca3d-6c67-4885-96a8-3b17d2aac22e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "36", "37", "38" ], - "x-ms-client-request-id": [ "678a46a6-41f3-419f-ac3f-dc30bb44aaa2", "678a46a6-41f3-419f-ac3f-dc30bb44aaa2", "678a46a6-41f3-419f-ac3f-dc30bb44aaa2" ], + "x-ms-unique-id": [ "23", "24", "25" ], + "x-ms-client-request-id": [ "ab80dd07-81f1-4f41-a867-13f99570c196", "ab80dd07-81f1-4f41-a867-13f99570c196", "ab80dd07-81f1-4f41-a867-13f99570c196" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_DeleteViaIdentity", "Remove-AzMySqlServer_DeleteViaIdentity", "Remove-AzMySqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1024,14 +977,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a9f4034f-c576-4f38-adfc-026b69d04e6a" ], + "x-ms-request-id": [ "c2e028ae-b1ab-41eb-bc62-a3408a3a6d50" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], - "x-ms-correlation-request-id": [ "e949a6ab-d620-4041-9e2e-59453347a110" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080319Z:e949a6ab-d620-4041-9e2e-59453347a110" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-correlation-request-id": [ "710519c8-b0c6-4f26-addd-34068693cc2b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T075934Z:710519c8-b0c6-4f26-addd-34068693cc2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:18 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:59:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Get-AzMySqlReplica.Tests.ps1 b/src/MySql/test/Get-AzMySqlReplica.Tests.ps1 index 3da78d113355..4610be24c9d4 100644 --- a/src/MySql/test/Get-AzMySqlReplica.Tests.ps1 +++ b/src/MySql/test/Get-AzMySqlReplica.Tests.ps1 @@ -13,7 +13,7 @@ while(-not $mockingPath) { Describe 'Get-AzMySqlReplica' { It 'List' { - Get-AzMySqlServer -ResourceGroupName $env.resourceGroup -ServerName $env.serverName | New-AzMySqlServerReplica -Name $env.replicaName -ResourceGroupName $env.resourceGroup + Get-AzMySqlServer -ResourceGroupName $env.resourceGroup -ServerName $env.serverName | New-AzMySqlReplica -Replica $env.replicaName -ResourceGroupName $env.resourceGroup $replica = Get-AzMySqlReplica -ResourceGroupName $env.resourceGroup -ServerName $env.serverName $replica.Count | Should -Be 1 Remove-AzMySqlServer -InputObject $replica diff --git a/src/MySql/test/Get-AzMySqlServer.Recording.json b/src/MySql/test/Get-AzMySqlServer.Recording.json index 72d209e64fca..8642aadaeadb 100644 --- a/src/MySql/test/Get-AzMySqlServer.Recording.json +++ b/src/MySql/test/Get-AzMySqlServer.Recording.json @@ -5,12 +5,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "18b48157-45a8-4f60-9495-d79119893435" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "ee25ffb0-0dc9-424d-903b-29dd0933c0e8" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "776b5aff-3f22-4616-9e42-5ef0e4b920f4" ], + "x-ms-request-id": [ "e6902d56-a3fc-4a8f-8a59-b207048a7ea1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], - "x-ms-correlation-request-id": [ "2952cbcb-d366-45de-a269-c3b6570e03f6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080320Z:2952cbcb-d366-45de-a269-c3b6570e03f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "492f9156-37ed-4ff8-81cc-719b07010315" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060709Z:492f9156-37ed-4ff8-81cc-719b07010315" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:19 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:07:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "3558" ], + "Content-Length": [ "8839" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysqltest\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysqltestericli.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-02T08:03:20.4351186+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/Ericli/providers/Microsoft.DBforMySQL/servers/mysqltestericli\",\"name\":\"mysqltestericli\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"B_Gen5_2\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":2},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":51200,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"lucas-test-mysql.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-07T09:25:48.977+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/lucas-test-mysql\",\"name\":\"lucas-test-mysql\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysqltest-1012.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T10:10:11.027+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTestRG/providers/Microsoft.DBforMySQL/servers/mysqltest-1012\",\"name\":\"mysqltest-1012\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-09T08:01:09.513+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"B_Gen5_2\",\"tier\":\"Basic\",\"family\":\"Gen5\",\"capacity\":2},\"properties\":{\"administratorLogin\":\"lucas\",\"storageProfile\":{\"storageMB\":51200,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"azuremysql-dev.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-17T06:07:08.9960907+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azureps-manual-test/providers/Microsoft.DBforMySQL/servers/azuremysql-dev\",\"name\":\"azuremysql-dev\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"dbadmin\",\"storageProfile\":{\"storageMB\":102400,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"xdmmysql.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-17T06:07:08.9960907+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/dixue/providers/Microsoft.DBforMySQL/servers/xdmmysql\",\"name\":\"xdmmysql\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test01.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T02:00:15.2+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/mysql-test01\",\"name\":\"mysql-test01\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test05.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T02:26:40.383+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/mysql-test05\",\"name\":\"mysql-test05\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test03.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T02:30:31.007+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/mysql-test03\",\"name\":\"mysql-test03\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test04.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T02:43:20.62+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/mysql-test04\",\"name\":\"mysql-test04\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test06.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T02:58:37.123+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/mysql-test06\",\"name\":\"mysql-test06\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test07.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:03:29.807+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/mysql-test07\",\"name\":\"mysql-test07\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"},{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"adminuser\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-888.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T04:06:02.24+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/lucas-manual-test/providers/Microsoft.DBforMySQL/servers/mysql-test-888\",\"name\":\"mysql-test-888\",\"type\":\"Microsoft.DBforMySQL/servers\"}]}" } }, "Get-AzMySqlServer+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { @@ -44,12 +44,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "1399518e-2a29-4b8e-a05b-1cfee74b95b7" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "2c10b66b-029b-49e3-853c-1622687cdb5a" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,21 +60,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d765d37b-f699-4f1b-9fdb-4d9917777fdd" ], + "x-ms-request-id": [ "3f2e74b9-c164-4cdd-bd6a-3c396011246b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], - "x-ms-correlation-request-id": [ "037266ec-4ad0-4a69-978a-97633679ccf3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080320Z:037266ec-4ad0-4a69-978a-97633679ccf3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "0bc2c423-7885-49c6-8001-122ff9c8b628" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060709Z:0bc2c423-7885-49c6-8001-122ff9c8b628" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:07:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-09T08:01:09.513+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Get-AzMySqlServer+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01+1": { @@ -83,12 +83,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "41" ], - "x-ms-client-request-id": [ "0419ae78-bf1c-44fe-8c9b-1baa160c27b1" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "4ac160bb-2e82-4016-b812-9fa9643c0740" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -99,21 +99,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8dc3dcb8-e856-4c1b-97de-e0b5c0a9e539" ], + "x-ms-request-id": [ "8abf4f03-06fc-4bfe-8e28-bad9e8784379" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], - "x-ms-correlation-request-id": [ "94e0e9f9-a75a-4046-b9d3-29195b7f86d4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080321Z:94e0e9f9-a75a-4046-b9d3-29195b7f86d4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "0bf85407-84c2-43d2-bd4c-377c7e0f745d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060710Z:0bf85407-84c2-43d2-bd4c-377c7e0f745d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:07:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "893" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-09T08:01:09.513+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}]}" + "Content": "{\"value\":[{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"\",\"masterServerId\":\"\",\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}]}" } }, "Get-AzMySqlServer+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { @@ -122,12 +122,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "42" ], - "x-ms-client-request-id": [ "f8182949-eb59-4141-9d4d-d2473f121817" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "4e03568e-9355-4a2e-83a9-08e678364b12" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -138,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a8ce6714-7ce3-4869-9e7c-a55ddf7203af" ], + "x-ms-request-id": [ "f4296d38-41e4-43c9-9c98-32a2bd7bd1dc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], - "x-ms-correlation-request-id": [ "6ae3b51c-2e85-4eb9-a179-3ce7d43af89b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200409T080321Z:6ae3b51c-2e85-4eb9-a179-3ce7d43af89b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "b1b2dc0b-a1b9-4b2d-80d6-175675cd3d1c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060710Z:b1b2dc0b-a1b9-4b2d-80d6-175675cd3d1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 09 Apr 2020 08:03:21 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:07:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-09T08:01:09.513+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } } } \ No newline at end of file diff --git a/src/MySql/test/Get-AzMySqlVirtualNetworkRule.Recording.json b/src/MySql/test/Get-AzMySqlVirtualNetworkRule.Recording.json index af55f75e04eb..908bc02d7f58 100644 --- a/src/MySql/test/Get-AzMySqlVirtualNetworkRule.Recording.json +++ b/src/MySql/test/Get-AzMySqlVirtualNetworkRule.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "7acb7771-db3e-46f2-998d-7833ff88490d" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/174655ec-ea44-45d2-9083-a25dd171349e?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/569cb4f0-1275-4372-9370-179d5ddc5b42?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/174655ec-ea44-45d2-9083-a25dd171349e?api-version=2017-12-01" ], - "x-ms-request-id": [ "174655ec-ea44-45d2-9083-a25dd171349e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/569cb4f0-1275-4372-9370-179d5ddc5b42?api-version=2017-12-01" ], + "x-ms-request-id": [ "569cb4f0-1275-4372-9370-179d5ddc5b42" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-correlation-request-id": [ "d56b31e4-2908-403e-a6b9-731c07198942" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110730Z:d56b31e4-2908-403e-a6b9-731c07198942" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "69cf67ed-4d24-49ab-82e1-0e53cf547756" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060744Z:69cf67ed-4d24-49ab-82e1-0e53cf547756" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:07:30 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:07:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:07:29.457Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:07:42.957Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/174655ec-ea44-45d2-9083-a25dd171349e?api-version=2017-12-01+2": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/569cb4f0-1275-4372-9370-179d5ddc5b42?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/174655ec-ea44-45d2-9083-a25dd171349e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/569cb4f0-1275-4372-9370-179d5ddc5b42?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "78", "79" ], - "x-ms-client-request-id": [ "7acb7771-db3e-46f2-998d-7833ff88490d", "7acb7771-db3e-46f2-998d-7833ff88490d" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "36791a49-25f6-475f-927b-94e63dba0960", "36791a49-25f6-475f-927b-94e63dba0960" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "9b79d258-9e6e-46a4-bb8e-aa2171138337" ], + "x-ms-request-id": [ "90fa5c76-62c9-41b5-88f4-959164107aa3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], - "x-ms-correlation-request-id": [ "24598b1f-f0fe-46b5-8b82-b0d4e0b89ae7" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110801Z:24598b1f-f0fe-46b5-8b82-b0d4e0b89ae7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "9f78f556-f85c-497f-b035-f9def835eb07" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060815Z:9f78f556-f85c-497f-b035-f9def835eb07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:08:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"174655ec-ea44-45d2-9083-a25dd171349e\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:07:29.457Z\"}" + "Content": "{\"name\":\"569cb4f0-1275-4372-9370-179d5ddc5b42\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:07:42.957Z\"}" } }, "Get-AzMySqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "78", "79", "80" ], - "x-ms-client-request-id": [ "7acb7771-db3e-46f2-998d-7833ff88490d", "7acb7771-db3e-46f2-998d-7833ff88490d", "7acb7771-db3e-46f2-998d-7833ff88490d" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "36791a49-25f6-475f-927b-94e63dba0960", "36791a49-25f6-475f-927b-94e63dba0960", "36791a49-25f6-475f-927b-94e63dba0960" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8dc19158-036e-4f2d-859b-a175bbee1154" ], + "x-ms-request-id": [ "ff8290a7-50f2-4ef6-bf36-e41e100cd361" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], - "x-ms-correlation-request-id": [ "255e5964-5bd0-420f-a83e-9130a71d9928" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110801Z:255e5964-5bd0-420f-a83e-9130a71d9928" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "b58ffb9f-3211-4346-9110-5e9155fff786" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060816Z:b58ffb9f-3211-4346-9110-5e9155fff786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:08:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -128,12 +121,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "ca908402-657e-44f8-a14f-16d5ca0c344e" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "609eb4be-3231-4519-96f3-e83a87801dc2" ], "CommandName": [ "Get-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMySqlVirtualNetworkRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,14 +137,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "995c2203-f51b-436f-b7bf-94f5917437c1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], + "x-ms-request-id": [ "14b24d98-00f3-49b8-9a56-30e74727eab2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "6f23b537-a109-4923-9c3c-aed324262795" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110802Z:6f23b537-a109-4923-9c3c-aed324262795" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "00958179-cdc1-4d57-a37e-84145ce7e9ac" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060816Z:00958179-cdc1-4d57-a37e-84145ce7e9ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:01 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:08:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "509" ], @@ -167,12 +160,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "c77b67e9-7853-4672-8edf-1ee96c391e46" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "e96600ef-c170-438c-a71d-3916f0e2411f" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -183,38 +176,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0689391c-3d67-46a2-ba35-f0e751316078?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0689391c-3d67-46a2-ba35-f0e751316078?api-version=2017-12-01" ], - "x-ms-request-id": [ "0689391c-3d67-46a2-ba35-f0e751316078" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318?api-version=2017-12-01" ], + "x-ms-request-id": [ "8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], - "x-ms-correlation-request-id": [ "5923afac-d8e3-46fa-a4a1-eb596952c1d8" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110804Z:5923afac-d8e3-46fa-a4a1-eb596952c1d8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "f82588a4-1c36-47b5-8c7c-ea15f894ba77" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060817Z:f82588a4-1c36-47b5-8c7c-ea15f894ba77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:03 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:08:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:08:03.537Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:08:16.77Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0689391c-3d67-46a2-ba35-f0e751316078?api-version=2017-12-01+6": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0689391c-3d67-46a2-ba35-f0e751316078?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "82", "83" ], - "x-ms-client-request-id": [ "c77b67e9-7853-4672-8edf-1ee96c391e46", "c77b67e9-7853-4672-8edf-1ee96c391e46" ], + "x-ms-unique-id": [ "5", "6" ], + "x-ms-client-request-id": [ "e96600ef-c170-438c-a71d-3916f0e2411f", "e96600ef-c170-438c-a71d-3916f0e2411f" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -226,35 +219,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "f92953a9-bbcb-4e48-9fcd-3ea8e489f52e" ], + "x-ms-request-id": [ "915da883-4c23-46eb-a9c4-2d2364a183f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], - "x-ms-correlation-request-id": [ "385f2f11-9ff1-496a-a250-50452b708381" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110820Z:385f2f11-9ff1-496a-a250-50452b708381" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "42090764-0c66-4b15-bb2b-def22731bad4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060833Z:42090764-0c66-4b15-bb2b-def22731bad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:08:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"0689391c-3d67-46a2-ba35-f0e751316078\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:08:03.537Z\"}" + "Content": "{\"name\":\"8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:08:16.77Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0689391c-3d67-46a2-ba35-f0e751316078?api-version=2017-12-01+7": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0689391c-3d67-46a2-ba35-f0e751316078?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/8d80b6fc-e5e2-4a05-8a3f-f1dcaa707318?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "82", "83", "84" ], - "x-ms-client-request-id": [ "c77b67e9-7853-4672-8edf-1ee96c391e46", "c77b67e9-7853-4672-8edf-1ee96c391e46", "c77b67e9-7853-4672-8edf-1ee96c391e46" ], + "x-ms-unique-id": [ "5", "6", "7" ], + "x-ms-client-request-id": [ "e96600ef-c170-438c-a71d-3916f0e2411f", "e96600ef-c170-438c-a71d-3916f0e2411f", "e96600ef-c170-438c-a71d-3916f0e2411f" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -265,14 +258,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "577cf076-b6b7-40d2-8d55-f616909d8d00" ], + "x-ms-request-id": [ "ad0abb40-61ec-4073-83b7-e318f5a646c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], - "x-ms-correlation-request-id": [ "a3862510-9a1d-4d52-8796-764234936373" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110824Z:a3862510-9a1d-4d52-8796-764234936373" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "2d05db2a-9162-4f6c-ab3b-caffafe2b333" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060833Z:2d05db2a-9162-4f6c-ab3b-caffafe2b333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:08:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -287,13 +280,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "bb9f98c1-2983-4cd5-a8b6-e0afe8e503d1" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -305,38 +291,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ed32706b-8093-49b1-b937-f11bf377800d?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/eca86a26-160c-4b90-9c07-b010bad8e44b?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ed32706b-8093-49b1-b937-f11bf377800d?api-version=2017-12-01" ], - "x-ms-request-id": [ "ed32706b-8093-49b1-b937-f11bf377800d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/eca86a26-160c-4b90-9c07-b010bad8e44b?api-version=2017-12-01" ], + "x-ms-request-id": [ "eca86a26-160c-4b90-9c07-b010bad8e44b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-correlation-request-id": [ "0fc6e203-b619-4c72-830b-b2de3f4b23f5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110826Z:0fc6e203-b619-4c72-830b-b2de3f4b23f5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "5683a03a-b1e3-41b8-9d57-a6a66aa02afe" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060835Z:5683a03a-b1e3-41b8-9d57-a6a66aa02afe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:25 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:08:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:08:24.943Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:08:34.003Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ed32706b-8093-49b1-b937-f11bf377800d?api-version=2017-12-01+2": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/eca86a26-160c-4b90-9c07-b010bad8e44b?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ed32706b-8093-49b1-b937-f11bf377800d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/eca86a26-160c-4b90-9c07-b010bad8e44b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "85", "86" ], - "x-ms-client-request-id": [ "bb9f98c1-2983-4cd5-a8b6-e0afe8e503d1", "bb9f98c1-2983-4cd5-a8b6-e0afe8e503d1" ], + "x-ms-unique-id": [ "8", "9" ], + "x-ms-client-request-id": [ "65a1390c-27bd-404f-849c-4f3a6a793261", "65a1390c-27bd-404f-849c-4f3a6a793261" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -348,21 +334,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "529d5ee4-579e-48a5-a48e-dc7d742555d5" ], + "x-ms-request-id": [ "73fc25d5-6799-4433-9f0f-3c89d8cfebfc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], - "x-ms-correlation-request-id": [ "31903fec-32e8-4ed1-af86-789d9348fa73" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110856Z:31903fec-32e8-4ed1-af86-789d9348fa73" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "3642ed5c-8246-46db-8bfe-6d294396ebb5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060905Z:3642ed5c-8246-46db-8bfe-6d294396ebb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:55 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ed32706b-8093-49b1-b937-f11bf377800d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:08:24.943Z\"}" + "Content": "{\"name\":\"eca86a26-160c-4b90-9c07-b010bad8e44b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:08:34.003Z\"}" } }, "Get-AzMySqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -371,12 +357,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "85", "86", "87" ], - "x-ms-client-request-id": [ "bb9f98c1-2983-4cd5-a8b6-e0afe8e503d1", "bb9f98c1-2983-4cd5-a8b6-e0afe8e503d1", "bb9f98c1-2983-4cd5-a8b6-e0afe8e503d1" ], + "x-ms-unique-id": [ "8", "9", "10" ], + "x-ms-client-request-id": [ "65a1390c-27bd-404f-849c-4f3a6a793261", "65a1390c-27bd-404f-849c-4f3a6a793261", "65a1390c-27bd-404f-849c-4f3a6a793261" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,14 +373,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a43778d3-4bb7-4336-96f7-1ab61cf63745" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], + "x-ms-request-id": [ "5c91f46f-5199-452f-b1f3-e743efe69e8b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "f7634844-4b71-4d49-af2a-e19b7da4007e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110856Z:f7634844-4b71-4d49-af2a-e19b7da4007e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "3f499083-7bf5-4df9-b0fd-91a517e6d810" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060905Z:3f499083-7bf5-4df9-b0fd-91a517e6d810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:56 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -410,12 +396,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "c36d311e-15ac-465f-97f1-6862298801f3" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "bc1f0067-4c48-4e40-8efc-5af0acec2044" ], "CommandName": [ "Get-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMySqlVirtualNetworkRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -426,14 +412,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ba1c2bb3-fac6-4225-882d-b09374cc483d" ], + "x-ms-request-id": [ "6454db72-db55-4c35-a879-16bc891c2108" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], - "x-ms-correlation-request-id": [ "5fb2b4f9-7359-441f-a78c-ab1b239a677b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110857Z:5fb2b4f9-7359-441f-a78c-ab1b239a677b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "f16a6bba-c1bb-4ce2-ab92-542d89b127fc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060906Z:f16a6bba-c1bb-4ce2-ab92-542d89b127fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -449,12 +435,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "792ef6b9-8026-4d5c-aba3-9b6b67b91dda" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "30a22c74-7147-4224-bddc-8a4a158fe8f8" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -465,38 +451,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f4bf62f5-055c-4f94-aec9-11a42563be75?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/909e92f8-2e4b-4cca-a590-1a984d1275d8?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f4bf62f5-055c-4f94-aec9-11a42563be75?api-version=2017-12-01" ], - "x-ms-request-id": [ "f4bf62f5-055c-4f94-aec9-11a42563be75" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/909e92f8-2e4b-4cca-a590-1a984d1275d8?api-version=2017-12-01" ], + "x-ms-request-id": [ "909e92f8-2e4b-4cca-a590-1a984d1275d8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], - "x-ms-correlation-request-id": [ "f0c5e52f-71ab-49a4-88a8-452b15062d65" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110859Z:f0c5e52f-71ab-49a4-88a8-452b15062d65" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "1b63e516-dac0-4a14-a718-a3eb22383b08" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060907Z:1b63e516-dac0-4a14-a718-a3eb22383b08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:08:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:08:58.413Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:09:06.55Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f4bf62f5-055c-4f94-aec9-11a42563be75?api-version=2017-12-01+6": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/909e92f8-2e4b-4cca-a590-1a984d1275d8?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f4bf62f5-055c-4f94-aec9-11a42563be75?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/909e92f8-2e4b-4cca-a590-1a984d1275d8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "89", "90" ], - "x-ms-client-request-id": [ "792ef6b9-8026-4d5c-aba3-9b6b67b91dda", "792ef6b9-8026-4d5c-aba3-9b6b67b91dda" ], + "x-ms-unique-id": [ "12", "13" ], + "x-ms-client-request-id": [ "30a22c74-7147-4224-bddc-8a4a158fe8f8", "30a22c74-7147-4224-bddc-8a4a158fe8f8" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -508,35 +494,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "d525ae59-ad66-47d4-b83e-80643a1fde5c" ], + "x-ms-request-id": [ "651d20d9-5e4d-45ce-b5bb-0252c2bfc8b4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], - "x-ms-correlation-request-id": [ "65aeb1ad-db5b-4cc3-81b6-2bc6ed76546b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110915Z:65aeb1ad-db5b-4cc3-81b6-2bc6ed76546b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "cb07340b-98f5-4f55-b957-573967d528f4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060923Z:cb07340b-98f5-4f55-b957-573967d528f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:09:14 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"f4bf62f5-055c-4f94-aec9-11a42563be75\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:08:58.413Z\"}" + "Content": "{\"name\":\"909e92f8-2e4b-4cca-a590-1a984d1275d8\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:09:06.55Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f4bf62f5-055c-4f94-aec9-11a42563be75?api-version=2017-12-01+7": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/909e92f8-2e4b-4cca-a590-1a984d1275d8?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f4bf62f5-055c-4f94-aec9-11a42563be75?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/909e92f8-2e4b-4cca-a590-1a984d1275d8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "89", "90", "91" ], - "x-ms-client-request-id": [ "792ef6b9-8026-4d5c-aba3-9b6b67b91dda", "792ef6b9-8026-4d5c-aba3-9b6b67b91dda", "792ef6b9-8026-4d5c-aba3-9b6b67b91dda" ], + "x-ms-unique-id": [ "12", "13", "14" ], + "x-ms-client-request-id": [ "30a22c74-7147-4224-bddc-8a4a158fe8f8", "30a22c74-7147-4224-bddc-8a4a158fe8f8", "30a22c74-7147-4224-bddc-8a4a158fe8f8" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -547,14 +533,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "df680de0-8c2e-482e-83cb-0e86b3e3e451" ], + "x-ms-request-id": [ "e766fdd5-3e49-4f9f-a561-e8cff9391fe4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], - "x-ms-correlation-request-id": [ "ceac3bee-07c5-4a94-9cd2-05998b29d576" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110915Z:ceac3bee-07c5-4a94-9cd2-05998b29d576" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "2d4bcacb-efe2-4c72-9093-6f6192ccc4bc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060923Z:2d4bcacb-efe2-4c72-9093-6f6192ccc4bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:09:15 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -569,13 +555,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "92" ], - "x-ms-client-request-id": [ "a75b2a2b-01d6-4976-a4de-a265c7beee9d" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -587,38 +566,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/94a86324-0fa7-4de9-87dc-47a331c77393?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c7a1a2cb-254e-4524-957d-a0325f03d984?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/94a86324-0fa7-4de9-87dc-47a331c77393?api-version=2017-12-01" ], - "x-ms-request-id": [ "94a86324-0fa7-4de9-87dc-47a331c77393" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c7a1a2cb-254e-4524-957d-a0325f03d984?api-version=2017-12-01" ], + "x-ms-request-id": [ "c7a1a2cb-254e-4524-957d-a0325f03d984" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-correlation-request-id": [ "15863e9f-6caf-4f8c-9211-2a86eaca1387" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110917Z:15863e9f-6caf-4f8c-9211-2a86eaca1387" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "c0a054e5-213d-45d2-955b-40aa5c90973e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060925Z:c0a054e5-213d-45d2-955b-40aa5c90973e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:09:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:09:15.927Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:09:23.787Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/94a86324-0fa7-4de9-87dc-47a331c77393?api-version=2017-12-01+2": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c7a1a2cb-254e-4524-957d-a0325f03d984?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/94a86324-0fa7-4de9-87dc-47a331c77393?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c7a1a2cb-254e-4524-957d-a0325f03d984?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "92", "93" ], - "x-ms-client-request-id": [ "a75b2a2b-01d6-4976-a4de-a265c7beee9d", "a75b2a2b-01d6-4976-a4de-a265c7beee9d" ], + "x-ms-unique-id": [ "15", "16" ], + "x-ms-client-request-id": [ "e1114cdf-01b4-49f4-adce-175e77e4895c", "e1114cdf-01b4-49f4-adce-175e77e4895c" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -630,21 +609,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "8b42dd15-9f64-479e-b5c9-8a730fa7d10c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], + "x-ms-request-id": [ "dad24963-cb0b-48b5-b2d3-42bd5f75823e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "6d6543d8-bef2-4b01-b609-f1d20eb6f74f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110952Z:6d6543d8-bef2-4b01-b609-f1d20eb6f74f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "a99ce529-8cc4-42c7-b29d-910eb4338f73" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060955Z:a99ce529-8cc4-42c7-b29d-910eb4338f73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:09:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"94a86324-0fa7-4de9-87dc-47a331c77393\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:09:15.927Z\"}" + "Content": "{\"name\":\"c7a1a2cb-254e-4524-957d-a0325f03d984\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:09:23.787Z\"}" } }, "Get-AzMySqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -653,12 +632,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "92", "93", "94" ], - "x-ms-client-request-id": [ "a75b2a2b-01d6-4976-a4de-a265c7beee9d", "a75b2a2b-01d6-4976-a4de-a265c7beee9d", "a75b2a2b-01d6-4976-a4de-a265c7beee9d" ], + "x-ms-unique-id": [ "15", "16", "17" ], + "x-ms-client-request-id": [ "e1114cdf-01b4-49f4-adce-175e77e4895c", "e1114cdf-01b4-49f4-adce-175e77e4895c", "e1114cdf-01b4-49f4-adce-175e77e4895c" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -669,14 +648,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dc2a2a03-9148-4b2d-8a3a-2b8e4394c155" ], + "x-ms-request-id": [ "abb52a54-baee-4bd7-8b61-812b07b7057a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], - "x-ms-correlation-request-id": [ "cffb15a9-28a1-4ea0-916c-7a4ed92533f1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110953Z:cffb15a9-28a1-4ea0-916c-7a4ed92533f1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "0d6952c5-7a25-46f5-af1c-9b91aa66bd70" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060955Z:0d6952c5-7a25-46f5-af1c-9b91aa66bd70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:09:52 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -692,12 +671,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "95" ], - "x-ms-client-request-id": [ "1c3445ea-d0a5-4469-b2f1-51520b27349e" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "0f8a37d8-13df-4d13-b1d7-567bd1f59ce3" ], "CommandName": [ "Get-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Get-AzMySqlVirtualNetworkRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -708,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a944fdf2-072c-4942-b69f-184d77827755" ], + "x-ms-request-id": [ "752e7aff-8eea-4e7f-9e44-134298a44906" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], - "x-ms-correlation-request-id": [ "8a1647e6-15db-4464-b5d9-133e6f319bfe" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110953Z:8a1647e6-15db-4464-b5d9-133e6f319bfe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "a00d26c4-a951-483a-b605-013b69a331cc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060956Z:a00d26c4-a951-483a-b605-013b69a331cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:09:52 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -731,12 +710,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "96" ], - "x-ms-client-request-id": [ "fe9e09bf-db9f-4eb7-8e66-45dc5f054b03" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "b3b4f6d1-0169-4c58-aa6d-434f8b8e2988" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -747,38 +726,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d5b08b87-827f-4514-b44b-fc87fb698835?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c39984c8-51b1-4bdb-b580-6d6fceab47f1?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d5b08b87-827f-4514-b44b-fc87fb698835?api-version=2017-12-01" ], - "x-ms-request-id": [ "d5b08b87-827f-4514-b44b-fc87fb698835" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c39984c8-51b1-4bdb-b580-6d6fceab47f1?api-version=2017-12-01" ], + "x-ms-request-id": [ "c39984c8-51b1-4bdb-b580-6d6fceab47f1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14993" ], - "x-ms-correlation-request-id": [ "a3773af6-1379-4bac-94f8-10cd8900dbaf" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T110955Z:a3773af6-1379-4bac-94f8-10cd8900dbaf" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "dd11cfd7-8d7e-476a-95a1-ae9d299920f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T060957Z:dd11cfd7-8d7e-476a-95a1-ae9d299920f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:09:54 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:09:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:09:53.887Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:09:56.49Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d5b08b87-827f-4514-b44b-fc87fb698835?api-version=2017-12-01+6": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c39984c8-51b1-4bdb-b580-6d6fceab47f1?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d5b08b87-827f-4514-b44b-fc87fb698835?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c39984c8-51b1-4bdb-b580-6d6fceab47f1?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "96", "97" ], - "x-ms-client-request-id": [ "fe9e09bf-db9f-4eb7-8e66-45dc5f054b03", "fe9e09bf-db9f-4eb7-8e66-45dc5f054b03" ], + "x-ms-unique-id": [ "19", "20" ], + "x-ms-client-request-id": [ "b3b4f6d1-0169-4c58-aa6d-434f8b8e2988", "b3b4f6d1-0169-4c58-aa6d-434f8b8e2988" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -790,35 +769,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "41b224fe-7202-4e95-8b88-885455d6e404" ], + "x-ms-request-id": [ "28b7a2de-ee1b-40a6-a088-0744c46a309f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], - "x-ms-correlation-request-id": [ "78dd6c7b-87dd-4b63-87c4-a8f743580c73" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111010Z:78dd6c7b-87dd-4b63-87c4-a8f743580c73" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "7aed32df-ada8-4b48-a142-f775f5eeb4b2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T061013Z:7aed32df-ada8-4b48-a142-f775f5eeb4b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:10 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:10:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"d5b08b87-827f-4514-b44b-fc87fb698835\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:09:53.887Z\"}" + "Content": "{\"name\":\"c39984c8-51b1-4bdb-b580-6d6fceab47f1\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:09:56.49Z\"}" } }, - "Get-AzMySqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d5b08b87-827f-4514-b44b-fc87fb698835?api-version=2017-12-01+7": { + "Get-AzMySqlVirtualNetworkRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c39984c8-51b1-4bdb-b580-6d6fceab47f1?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d5b08b87-827f-4514-b44b-fc87fb698835?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c39984c8-51b1-4bdb-b580-6d6fceab47f1?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "96", "97", "98" ], - "x-ms-client-request-id": [ "fe9e09bf-db9f-4eb7-8e66-45dc5f054b03", "fe9e09bf-db9f-4eb7-8e66-45dc5f054b03", "fe9e09bf-db9f-4eb7-8e66-45dc5f054b03" ], + "x-ms-unique-id": [ "19", "20", "21" ], + "x-ms-client-request-id": [ "b3b4f6d1-0169-4c58-aa6d-434f8b8e2988", "b3b4f6d1-0169-4c58-aa6d-434f8b8e2988", "b3b4f6d1-0169-4c58-aa6d-434f8b8e2988" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -829,14 +808,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a7c1909f-1501-4413-9896-a1570a46f320" ], + "x-ms-request-id": [ "7dd4b518-cde2-40ef-bd4e-9d397167b44d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], - "x-ms-correlation-request-id": [ "43dfcdbb-ef7d-4a8e-9222-9abce837b878" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111011Z:43dfcdbb-ef7d-4a8e-9222-9abce837b878" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "a2276d07-514d-4dac-b42b-9eb1cbe8b4f9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T061013Z:a2276d07-514d-4dac-b42b-9eb1cbe8b4f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:11 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:10:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/New-AzMySqlFirewallRule.Recording.json b/src/MySql/test/New-AzMySqlFirewallRule.Recording.json index 443036e58a44..9cb9d370bfd9 100644 --- a/src/MySql/test/New-AzMySqlFirewallRule.Recording.json +++ b/src/MySql/test/New-AzMySqlFirewallRule.Recording.json @@ -3,19 +3,12 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"0.0.0.1\",\r\n \"startIpAddress\": \"0.0.0.0\"\r\n }\r\n}", "Headers": { - "x-ms-unique-id": [ "99" ], - "x-ms-client-request-id": [ "640ded3d-2d25-4fb9-9a05-4ada7a6e247a" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "88" ] + "Content-Length": [ "93" ] } }, "Response": { @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/bfea27cb-da14-4741-bc3d-6c3fbc9bddb4?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/7905d7ea-2033-455a-91a4-7780d0e6c19b?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bfea27cb-da14-4741-bc3d-6c3fbc9bddb4?api-version=2017-12-01" ], - "x-ms-request-id": [ "bfea27cb-da14-4741-bc3d-6c3fbc9bddb4" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7905d7ea-2033-455a-91a4-7780d0e6c19b?api-version=2017-12-01" ], + "x-ms-request-id": [ "7905d7ea-2033-455a-91a4-7780d0e6c19b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-correlation-request-id": [ "8ef71965-cb57-4627-8c39-64d63f49f590" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111013Z:8ef71965-cb57-4627-8c39-64d63f49f590" ], + "x-ms-correlation-request-id": [ "2d4d9a71-7a4a-488a-9c69-8326ca19f0e8" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132707Z:2d4d9a71-7a4a-488a-9c69-8326ca19f0e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:13 GMT" ] + "Date": [ "Tue, 11 Aug 2020 13:27:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T11:10:12.527Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-08-11T13:27:05.877Z\"}" } }, - "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bfea27cb-da14-4741-bc3d-6c3fbc9bddb4?api-version=2017-12-01+2": { + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7905d7ea-2033-455a-91a4-7780d0e6c19b?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bfea27cb-da14-4741-bc3d-6c3fbc9bddb4?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7905d7ea-2033-455a-91a4-7780d0e6c19b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "99", "100" ], - "x-ms-client-request-id": [ "640ded3d-2d25-4fb9-9a05-4ada7a6e247a", "640ded3d-2d25-4fb9-9a05-4ada7a6e247a" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "94", "95" ], + "x-ms-client-request-id": [ "ed523453-ec6c-4d57-bc5e-9c9bac7bed82", "ed523453-ec6c-4d57-bc5e-9c9bac7bed82" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "0105a6d4-2107-4bfd-9940-4fe7314967ae" ], + "x-ms-request-id": [ "6d75bccd-26bd-4c6c-b6ac-79c107734909" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], - "x-ms-correlation-request-id": [ "b52c7346-d5fa-4da5-9e91-5cf2c3536cf6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111029Z:b52c7346-d5fa-4da5-9e91-5cf2c3536cf6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], + "x-ms-correlation-request-id": [ "0d169ffa-8b29-43ec-87b5-41359dcb704e" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132722Z:0d169ffa-8b29-43ec-87b5-41359dcb704e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:28 GMT" ] + "Date": [ "Tue, 11 Aug 2020 13:27:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"bfea27cb-da14-4741-bc3d-6c3fbc9bddb4\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:10:12.527Z\"}" + "Content": "{\"name\":\"7905d7ea-2033-455a-91a4-7780d0e6c19b\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-11T13:27:05.877Z\"}" } }, "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "99", "100", "101" ], - "x-ms-client-request-id": [ "640ded3d-2d25-4fb9-9a05-4ada7a6e247a", "640ded3d-2d25-4fb9-9a05-4ada7a6e247a", "640ded3d-2d25-4fb9-9a05-4ada7a6e247a" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "94", "95", "96" ], + "x-ms-client-request-id": [ "ed523453-ec6c-4d57-bc5e-9c9bac7bed82", "ed523453-ec6c-4d57-bc5e-9c9bac7bed82", "ed523453-ec6c-4d57-bc5e-9c9bac7bed82" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9722a321-0ec8-4c6b-890a-914c8a597072" ], + "x-ms-request-id": [ "6cbe6c03-5c6a-4d70-b794-88174dfaf91f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], - "x-ms-correlation-request-id": [ "012de8ea-870f-4f43-8db7-3363e57a908b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111033Z:012de8ea-870f-4f43-8db7-3363e57a908b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], + "x-ms-correlation-request-id": [ "b211a423-9105-4575-92ce-ea7fe361e45e" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132723Z:b211a423-9105-4575-92ce-ea7fe361e45e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:32 GMT" ] + "Date": [ "Tue, 11 Aug 2020 13:27:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -128,12 +121,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "4737c54d-d1db-4098-80ee-37bfe391cc0c" ], + "x-ms-unique-id": [ "97" ], + "x-ms-client-request-id": [ "bd4ff2a5-58e9-4141-b121-49bb64accd9f" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,38 +137,274 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f83600e1-8df3-441c-9b23-4eb4afb53879?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/afcfce15-c285-405b-9fa2-5b12013a9137?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f83600e1-8df3-441c-9b23-4eb4afb53879?api-version=2017-12-01" ], - "x-ms-request-id": [ "f83600e1-8df3-441c-9b23-4eb4afb53879" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/afcfce15-c285-405b-9fa2-5b12013a9137?api-version=2017-12-01" ], + "x-ms-request-id": [ "afcfce15-c285-405b-9fa2-5b12013a9137" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14992" ], - "x-ms-correlation-request-id": [ "bc70f22f-1d0c-43c4-8807-76781a740c7a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111034Z:bc70f22f-1d0c-43c4-8807-76781a740c7a" ], + "x-ms-correlation-request-id": [ "1c022c84-c87e-4822-8a70-53e1cf83bd56" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132725Z:1c022c84-c87e-4822-8a70-53e1cf83bd56" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:27:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "83" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-08-11T13:27:23.83Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/afcfce15-c285-405b-9fa2-5b12013a9137?api-version=2017-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/afcfce15-c285-405b-9fa2-5b12013a9137?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "97", "98" ], + "x-ms-client-request-id": [ "bd4ff2a5-58e9-4141-b121-49bb64accd9f", "bd4ff2a5-58e9-4141-b121-49bb64accd9f" ], + "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], + "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_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" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "7d3d4519-ee7f-4fc4-ab45-ff864c6b40fa" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], + "x-ms-correlation-request-id": [ "f0745f4e-95ec-4cc9-b04e-5c8599f4a118" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132741Z:f0745f4e-95ec-4cc9-b04e-5c8599f4a118" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:27:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "106" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"afcfce15-c285-405b-9fa2-5b12013a9137\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-11T13:27:23.83Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/afcfce15-c285-405b-9fa2-5b12013a9137?api-version=2017-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/afcfce15-c285-405b-9fa2-5b12013a9137?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "97", "98", "99" ], + "x-ms-client-request-id": [ "bd4ff2a5-58e9-4141-b121-49bb64accd9f", "bd4ff2a5-58e9-4141-b121-49bb64accd9f", "bd4ff2a5-58e9-4141-b121-49bb64accd9f" ], + "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], + "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_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": [ "4436a735-7bf6-46fb-b18f-b229618069fb" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], + "x-ms-correlation-request-id": [ "e684b655-319a-4bb1-8878-a00599bd0cd6" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132741Z:e684b655-319a-4bb1-8878-a00599bd0cd6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:27:41 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+7": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"0.0.0.1\",\r\n \"startIpAddress\": \"0.0.0.1\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "93" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/7829f89e-24fe-4760-af09-60a52c725ace?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7829f89e-24fe-4760-af09-60a52c725ace?api-version=2017-12-01" ], + "x-ms-request-id": [ "7829f89e-24fe-4760-af09-60a52c725ace" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "x-ms-correlation-request-id": [ "64de701c-cfe4-48f9-aa40-223a72753c94" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132743Z:64de701c-cfe4-48f9-aa40-223a72753c94" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:27:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "86" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-08-11T13:27:42.36Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7829f89e-24fe-4760-af09-60a52c725ace?api-version=2017-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7829f89e-24fe-4760-af09-60a52c725ace?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "100", "101" ], + "x-ms-client-request-id": [ "f43706a0-0099-41dd-9c3d-9544c000fc4a", "f43706a0-0099-41dd-9c3d-9544c000fc4a" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], + "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], + "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" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "2bdd3ffd-24b1-439b-bec8-8c20e6215346" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], + "x-ms-correlation-request-id": [ "a6b3372c-7c8c-40f8-b650-7581f956503f" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132759Z:a6b3372c-7c8c-40f8-b650-7581f956503f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:27:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "106" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"7829f89e-24fe-4760-af09-60a52c725ace\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-11T13:27:42.36Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "100", "101", "102" ], + "x-ms-client-request-id": [ "f43706a0-0099-41dd-9c3d-9544c000fc4a", "f43706a0-0099-41dd-9c3d-9544c000fc4a", "f43706a0-0099-41dd-9c3d-9544c000fc4a" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], + "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], + "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": [ "08063341-0c68-4cc4-a161-13d7d00bcd07" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], + "x-ms-correlation-request-id": [ "25d1df5f-e106-4dbf-9c71-a556ce1d1a78" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132759Z:25d1df5f-e106-4dbf-9c71-a556ce1d1a78" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:27:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "305" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.1\",\"endIpAddress\":\"0.0.0.1\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01\",\"name\":\"mysqlrule01\",\"type\":\"Microsoft.DBforMySQL/servers/firewallRules\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+10": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "103" ], + "x-ms-client-request-id": [ "3069ae71-1ec4-42a1-8284-dc80ee065b8b" ], + "CommandName": [ "Remove-AzMySqlFirewallRule" ], + "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0bfce3da-97d8-4215-a951-d983b2ce4fd6?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0bfce3da-97d8-4215-a951-d983b2ce4fd6?api-version=2017-12-01" ], + "x-ms-request-id": [ "0bfce3da-97d8-4215-a951-d983b2ce4fd6" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], + "x-ms-correlation-request-id": [ "c82801ee-fbdc-4208-883a-cbcbd01a1e77" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132801Z:c82801ee-fbdc-4208-883a-cbcbd01a1e77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:34 GMT" ] + "Date": [ "Tue, 11 Aug 2020 13:28:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T11:10:33.743Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-08-11T13:28:00.173Z\"}" } }, - "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f83600e1-8df3-441c-9b23-4eb4afb53879?api-version=2017-12-01+5": { + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0bfce3da-97d8-4215-a951-d983b2ce4fd6?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/f83600e1-8df3-441c-9b23-4eb4afb53879?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0bfce3da-97d8-4215-a951-d983b2ce4fd6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "102", "103" ], - "x-ms-client-request-id": [ "4737c54d-d1db-4098-80ee-37bfe391cc0c", "4737c54d-d1db-4098-80ee-37bfe391cc0c" ], + "x-ms-unique-id": [ "103", "104" ], + "x-ms-client-request-id": [ "3069ae71-1ec4-42a1-8284-dc80ee065b8b", "3069ae71-1ec4-42a1-8284-dc80ee065b8b" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -187,35 +416,271 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "baa94a49-0d11-4b89-b708-ecc7e0871db0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], + "x-ms-request-id": [ "0faef606-72ec-4fa8-9d7c-26776c5e951d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "daa41a7c-4fb4-4a8f-9f47-c6b866a181a4" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111050Z:daa41a7c-4fb4-4a8f-9f47-c6b866a181a4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], + "x-ms-correlation-request-id": [ "f08ab6f0-d323-4a1f-b593-3a43dec17af2" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132818Z:f08ab6f0-d323-4a1f-b593-3a43dec17af2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:28:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"0bfce3da-97d8-4215-a951-d983b2ce4fd6\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-11T13:28:00.173Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0bfce3da-97d8-4215-a951-d983b2ce4fd6?api-version=2017-12-01+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0bfce3da-97d8-4215-a951-d983b2ce4fd6?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "103", "104", "105" ], + "x-ms-client-request-id": [ "3069ae71-1ec4-42a1-8284-dc80ee065b8b", "3069ae71-1ec4-42a1-8284-dc80ee065b8b", "3069ae71-1ec4-42a1-8284-dc80ee065b8b" ], + "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], + "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_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": [ "153acd45-058b-40d3-90b7-d8bd031706c9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], + "x-ms-correlation-request-id": [ "74f8cf65-492c-41e9-891c-05cb85cdfba3" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132818Z:74f8cf65-492c-41e9-891c-05cb85cdfba3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:28:18 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "New-AzMySqlFirewallRule+[NoContext]+AllowAll+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01", + "Content": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"255.255.255.255\",\r\n \"startIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "101" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/8a4de3fa-c25f-4b3a-9c9a-fc8b40491ef9?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8a4de3fa-c25f-4b3a-9c9a-fc8b40491ef9?api-version=2017-12-01" ], + "x-ms-request-id": [ "8a4de3fa-c25f-4b3a-9c9a-fc8b40491ef9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-correlation-request-id": [ "8ea8ffad-b781-4a2d-8c22-e6106ce61017" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132820Z:8ea8ffad-b781-4a2d-8c22-e6106ce61017" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:28:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "87" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-08-11T13:28:19.243Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8a4de3fa-c25f-4b3a-9c9a-fc8b40491ef9?api-version=2017-12-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8a4de3fa-c25f-4b3a-9c9a-fc8b40491ef9?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "106", "107" ], + "x-ms-client-request-id": [ "fbc93aef-f54b-4c79-be23-f2d6573dff22", "fbc93aef-f54b-4c79-be23-f2d6573dff22" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], + "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], + "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" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "3c886455-753c-497b-9507-2fb266a4ee13" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], + "x-ms-correlation-request-id": [ "91b4547e-3d5d-4f09-883b-afb4fe272deb" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132835Z:91b4547e-3d5d-4f09-883b-afb4fe272deb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:28:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"8a4de3fa-c25f-4b3a-9c9a-fc8b40491ef9\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-11T13:28:19.243Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "106", "107", "108" ], + "x-ms-client-request-id": [ "fbc93aef-f54b-4c79-be23-f2d6573dff22", "fbc93aef-f54b-4c79-be23-f2d6573dff22", "fbc93aef-f54b-4c79-be23-f2d6573dff22" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], + "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], + "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": [ "6016ab7f-0c6c-4e1e-9c2a-59635192154f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], + "x-ms-correlation-request-id": [ "a1e25f47-585b-4ab6-9447-52fe3e8ae2d9" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132836Z:a1e25f47-585b-4ab6-9447-52fe3e8ae2d9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:28:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "347" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.0\",\"endIpAddress\":\"255.255.255.255\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19\",\"name\":\"AllowAll_2020-08-11_21-28-19\",\"type\":\"Microsoft.DBforMySQL/servers/firewallRules\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+AllowAll+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01+4": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/AllowAll_2020-08-11_21-28-19?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "109" ], + "x-ms-client-request-id": [ "64853478-f2c9-4975-8cb9-bbf3dcbddecf" ], + "CommandName": [ "Remove-AzMySqlFirewallRule" ], + "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/42839a43-c94c-48c1-a2c0-71273cd0b3ec?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/42839a43-c94c-48c1-a2c0-71273cd0b3ec?api-version=2017-12-01" ], + "x-ms-request-id": [ "42839a43-c94c-48c1-a2c0-71273cd0b3ec" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], + "x-ms-correlation-request-id": [ "fb129fdc-d7cc-4a4e-90eb-1c95486a67c1" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132838Z:fb129fdc-d7cc-4a4e-90eb-1c95486a67c1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Tue, 11 Aug 2020 13:28:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "84" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-08-11T13:28:37.043Z\"}" + } + }, + "New-AzMySqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/42839a43-c94c-48c1-a2c0-71273cd0b3ec?api-version=2017-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/42839a43-c94c-48c1-a2c0-71273cd0b3ec?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "109", "110" ], + "x-ms-client-request-id": [ "64853478-f2c9-4975-8cb9-bbf3dcbddecf", "64853478-f2c9-4975-8cb9-bbf3dcbddecf" ], + "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], + "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_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" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "416dcc50-d45f-4ab0-87a0-55c947e97100" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], + "x-ms-correlation-request-id": [ "ca32e1b2-9b79-43ee-8428-8275dace81ff" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132853Z:ca32e1b2-9b79-43ee-8428-8275dace81ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:49 GMT" ] + "Date": [ "Tue, 11 Aug 2020 13:28:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"f83600e1-8df3-441c-9b23-4eb4afb53879\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:10:33.743Z\"}" + "Content": "{\"name\":\"42839a43-c94c-48c1-a2c0-71273cd0b3ec\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-11T13:28:37.043Z\"}" } }, - "New-AzMySqlFirewallRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f83600e1-8df3-441c-9b23-4eb4afb53879?api-version=2017-12-01+6": { + "New-AzMySqlFirewallRule+[NoContext]+AllowAll+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/42839a43-c94c-48c1-a2c0-71273cd0b3ec?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/f83600e1-8df3-441c-9b23-4eb4afb53879?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/42839a43-c94c-48c1-a2c0-71273cd0b3ec?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "102", "103", "104" ], - "x-ms-client-request-id": [ "4737c54d-d1db-4098-80ee-37bfe391cc0c", "4737c54d-d1db-4098-80ee-37bfe391cc0c", "4737c54d-d1db-4098-80ee-37bfe391cc0c" ], + "x-ms-unique-id": [ "109", "110", "111" ], + "x-ms-client-request-id": [ "64853478-f2c9-4975-8cb9-bbf3dcbddecf", "64853478-f2c9-4975-8cb9-bbf3dcbddecf", "64853478-f2c9-4975-8cb9-bbf3dcbddecf" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -226,14 +691,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "158491e0-494b-420e-b713-ee2f37a4e4f1" ], + "x-ms-request-id": [ "5332d2e4-d932-4a3e-be54-70fa026d02c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], - "x-ms-correlation-request-id": [ "cb4a44ab-7f0e-4cf5-8c55-903e02fba574" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111051Z:cb4a44ab-7f0e-4cf5-8c55-903e02fba574" ], + "x-ms-correlation-request-id": [ "14519af9-cfef-4d16-9137-922fd9d79605" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200811T132854Z:14519af9-cfef-4d16-9137-922fd9d79605" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:51 GMT" ] + "Date": [ "Tue, 11 Aug 2020 13:28:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/New-AzMySqlFirewallRule.Tests.ps1 b/src/MySql/test/New-AzMySqlFirewallRule.Tests.ps1 index 1c26b7fc5ae1..18dc2d481189 100644 --- a/src/MySql/test/New-AzMySqlFirewallRule.Tests.ps1 +++ b/src/MySql/test/New-AzMySqlFirewallRule.Tests.ps1 @@ -18,5 +18,21 @@ Describe 'New-AzMySqlFirewallRule' { $rule.StartIPAddress | Should -Be 0.0.0.0 $rule.EndIPAddress | Should -Be 0.0.0.1 Remove-AzMySqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName + + #Use only one parameter when only one IP + $rule = New-AzMySqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -StartIPAddress 0.0.0.1 + $rule.Name | Should -Be $env.firewallRuleName + $rule.StartIPAddress | Should -Be 0.0.0.1 + $rule.EndIPAddress | Should -Be 0.0.0.1 + Remove-AzMySqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName + } + + It 'AllowAll' { + $allowAllName = 'AllowAll_2020-08-11_21-28-19' + $rule = New-AzMySqlFirewallRule -Name $allowAllName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -AllowAll + $rule.Name | Should -Be $allowAllName + $rule.StartIPAddress | Should -Be 0.0.0.0 + $rule.EndIPAddress | Should -Be 255.255.255.255 + Remove-AzMySqlFirewallRule -Name $rule.Name -ResourceGroupName $env.resourceGroup -ServerName $env.serverName } } diff --git a/src/MySql/test/New-AzMySqlReplica.Recording.json b/src/MySql/test/New-AzMySqlReplica.Recording.json new file mode 100644 index 000000000000..044fd33a0940 --- /dev/null +++ b/src/MySql/test/New-AzMySqlReplica.Recording.json @@ -0,0 +1,1004 @@ +{ + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "112" ], + "x-ms-client-request-id": [ "116a1ae7-1465-4ad2-8d1a-fba6ce68f23b" ], + "CommandName": [ "Get-AzMySqlServer" ], + "FullCommandName": [ "Get-AzMySqlServer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6bd3f610-af95-4322-ab0a-f8666a2248c4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], + "x-ms-correlation-request-id": [ "b8157913-087e-4db6-964b-159b91c90394" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111318Z:b8157913-087e-4db6-964b-159b91c90394" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:13:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "905" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", + "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\"\n },\n \"location\": \"eastus\"\n}", + "Headers": { + "x-ms-unique-id": [ "113" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "233" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01" ], + "x-ms-request-id": [ "c76c579e-55b4-4fe9-b19d-75093eeca064" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-correlation-request-id": [ "6cf54724-7319-4aed-86f4-7b1196cfe3a4" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111322Z:6cf54724-7319-4aed-86f4-7b1196cfe3a4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:13:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "88" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "5b3bf466-8772-43fe-8529-99ca3d4fb992" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "b68945bc-18b1-4118-a20f-0807111ade6d" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111353Z:b68945bc-18b1-4118-a20f-0807111ade6d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:13:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "f00e790d-9c02-41d4-91a7-d2607107a58f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], + "x-ms-correlation-request-id": [ "5dce773d-1db5-41b6-a3f9-ed853602371c" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111425Z:5dce773d-1db5-41b6-a3f9-ed853602371c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:14:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "7436c206-33e5-4796-805f-7eb0bb9121d7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], + "x-ms-correlation-request-id": [ "da9a2db1-fab3-469a-abf7-48e5454f223d" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111456Z:da9a2db1-fab3-469a-abf7-48e5454f223d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:14:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "c1470d96-7125-43f3-8d4c-6155fe6fbc44" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "fedaf09c-7785-4847-ac77-06feb0d42614" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111527Z:fedaf09c-7785-4847-ac77-06feb0d42614" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:15:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "5d2673c2-2d5a-4635-be5e-06ce8cbf0245" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], + "x-ms-correlation-request-id": [ "d747924d-82e1-4ab4-9199-7cd1c4fff5c0" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111558Z:d747924d-82e1-4ab4-9199-7cd1c4fff5c0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:15:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "0a7771af-5052-4838-b5c8-bf868a91ba03" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], + "x-ms-correlation-request-id": [ "96294436-8db9-4374-9685-280d1bd77ffa" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111628Z:96294436-8db9-4374-9685-280d1bd77ffa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:16:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "2320fdd6-6b69-427d-8c31-ec970f76e392" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "bbca5227-e435-44ee-9188-b6aad5db8e33" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111700Z:bbca5227-e435-44ee-9188-b6aad5db8e33" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:16:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "e6111022-f3a3-48cc-86e9-7a02cb727cf9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], + "x-ms-correlation-request-id": [ "e9284be5-69f3-4834-ab4b-8d1e6b0b7247" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111730Z:e9284be5-69f3-4834-ab4b-8d1e6b0b7247" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:17:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "4e59c7b2-81d8-48b6-91dc-14c46d7fa92c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], + "x-ms-correlation-request-id": [ "04c9f94f-0181-4689-90ac-75b5b0666276" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111801Z:04c9f94f-0181-4689-90ac-75b5b0666276" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:18:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "f2fea837-d93c-4a45-86d0-22eafe3db512" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "e786eb3e-955e-4e2c-b176-7cf9e9d3b790" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111831Z:e786eb3e-955e-4e2c-b176-7cf9e9d3b790" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:18:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "6f28c4b0-92e9-4c15-a886-1a4ad8364606" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], + "x-ms-correlation-request-id": [ "a83322af-80b9-4ff4-a09c-e80ca1ab224a" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111902Z:a83322af-80b9-4ff4-a09c-e80ca1ab224a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:19:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "c4a5d6b0-2c6c-4e42-bef9-02abb6daaa16" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], + "x-ms-correlation-request-id": [ "e28c6b96-841d-4d6c-9c3f-3bf259d8f24f" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111933Z:e28c6b96-841d-4d6c-9c3f-3bf259d8f24f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:19:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "930b2457-7469-4690-b467-1b3995b8acbd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "c1e4133e-c391-4669-ba67-196ec677abaf" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112003Z:c1e4133e-c391-4669-ba67-196ec677abaf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:20:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "2a1f3e81-5482-41b8-9149-f80da40c5351" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], + "x-ms-correlation-request-id": [ "0111152c-36e9-4ea2-a4b9-6abf4abcde2f" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112034Z:0111152c-36e9-4ea2-a4b9-6abf4abcde2f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:20:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "59702fc3-9d07-41fb-b5ea-449fc5367ec3" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], + "x-ms-correlation-request-id": [ "2ffc752f-254d-49b7-b5d2-05a129feb11e" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112105Z:2ffc752f-254d-49b7-b5d2-05a129feb11e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:21:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "6901c559-4d2b-47fd-95b0-9313a1c2c423" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "47db9c6b-21df-43d2-9fc7-47206c2a4af1" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112135Z:47db9c6b-21df-43d2-9fc7-47206c2a4af1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:21:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "f5405c66-3a8d-4b27-9f0b-5fa70c66b263" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], + "x-ms-correlation-request-id": [ "d4f130b3-126e-47e2-b1f2-2d60da667ad3" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112206Z:d4f130b3-126e-47e2-b1f2-2d60da667ad3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:22:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "d08e28c9-108a-4a8f-9e06-b2d5c6d24a87" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], + "x-ms-correlation-request-id": [ "2f564c28-293d-47c8-8a76-eb29055655c3" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112236Z:2f564c28-293d-47c8-8a76-eb29055655c3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:22:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "844af692-a40f-4bc3-b025-1f76e498b58a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "840fcf90-d7d3-40fd-9809-8ac4bff7faf9" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112307Z:840fcf90-d7d3-40fd-9809-8ac4bff7faf9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:23:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133" ], + "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "74bc0907-ebbd-4bde-b0e6-7b379e9314cc" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], + "x-ms-correlation-request-id": [ "d3372cc2-2609-4df2-a4bb-9f65614fb5a2" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112308Z:d3372cc2-2609-4df2-a4bb-9f65614fb5a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:23:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1061" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:25:23.023+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "134" ], + "x-ms-client-request-id": [ "4a855882-db96-4919-91ac-1f39fa8357ac" ], + "CommandName": [ "Remove-AzMySqlServer" ], + "FullCommandName": [ "Remove-AzMySqlServer_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01" ], + "Retry-After": [ "15" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01" ], + "x-ms-request-id": [ "3ba846cb-160f-415f-a703-fc8e08e4c616" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], + "x-ms-correlation-request-id": [ "2e6729c0-bae6-4740-8036-8b0135bceb7d" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112309Z:2e6729c0-bae6-4740-8036-8b0135bceb7d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:23:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "72" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-08T11:23:09.153Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "134", "135" ], + "x-ms-client-request-id": [ "4a855882-db96-4919-91ac-1f39fa8357ac", "4a855882-db96-4919-91ac-1f39fa8357ac" ], + "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], + "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "x-ms-request-id": [ "9692b0e1-283f-4337-9c56-80efa09b4fd4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], + "x-ms-correlation-request-id": [ "ba199b23-cb8a-486d-b54c-3bd0c380ae59" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112324Z:ba199b23-cb8a-486d-b54c-3bd0c380ae59" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:23:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"3ba846cb-160f-415f-a703-fc8e08e4c616\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:23:09.153Z\"}" + } + }, + "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01+25": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "134", "135", "136" ], + "x-ms-client-request-id": [ "4a855882-db96-4919-91ac-1f39fa8357ac", "4a855882-db96-4919-91ac-1f39fa8357ac", "4a855882-db96-4919-91ac-1f39fa8357ac" ], + "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], + "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5247383a-d49d-4ca2-9938-b7a7227f4eb4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], + "x-ms-correlation-request-id": [ "217595c7-cef4-4d60-9e1c-e6c424efa5c6" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112325Z:217595c7-cef4-4d60-9e1c-e6c424efa5c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Wed, 08 Apr 2020 11:23:24 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + } +} \ No newline at end of file diff --git a/src/MySql/test/New-AzMySqlServerReplica.Tests.ps1 b/src/MySql/test/New-AzMySqlReplica.Tests.ps1 similarity index 83% rename from src/MySql/test/New-AzMySqlServerReplica.Tests.ps1 rename to src/MySql/test/New-AzMySqlReplica.Tests.ps1 index 0eed823e79c7..161a03e7f7e4 100644 --- a/src/MySql/test/New-AzMySqlServerReplica.Tests.ps1 +++ b/src/MySql/test/New-AzMySqlReplica.Tests.ps1 @@ -11,9 +11,9 @@ while(-not $mockingPath) { } . ($mockingPath | Select-Object -First 1).FullName -Describe 'New-AzMySqlServerReplica' { +Describe 'New-AzMySqlReplica' { It 'CreateExpanded' { - $replica = Get-AzMySqlServer -ResourceGroupName $env.resourceGroup -ServerName $env.serverName | New-AzMySqlServerReplica -Name $env.replicaName -ResourceGroupName $env.resourceGroup + $replica = Get-AzMySqlServer -ResourceGroupName $env.resourceGroup -ServerName $env.serverName | New-AzMySqlReplica -Replica $env.replicaName -ResourceGroupName $env.resourceGroup $replica.Name | Should -Be $env.replicaName $replica.SkuName | Should -Be $env.Sku $replica.Location | Should -Be eastus diff --git a/src/MySql/test/New-AzMySqlServer.Recording.json b/src/MySql/test/New-AzMySqlServer.Recording.json index d40e886971d5..a88a4ca058f5 100644 --- a/src/MySql/test/New-AzMySqlServer.Recording.json +++ b/src/MySql/test/New-AzMySqlServer.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"createMode\": \"Default\",\n \"administratorLogin\": \"pwsh\",\n \"administratorLoginPassword\": \"Pa88word!\"\n },\n \"sku\": {\n \"name\": \"GP_Gen5_4\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "105" ], - "x-ms-client-request-id": [ "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/dedd96e5-14f9-482d-b77d-5c469d555bc3?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4d7c6645-81d7-4604-99db-387dedcedfbf?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dedd96e5-14f9-482d-b77d-5c469d555bc3?api-version=2017-12-01" ], - "x-ms-request-id": [ "dedd96e5-14f9-482d-b77d-5c469d555bc3" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4d7c6645-81d7-4604-99db-387dedcedfbf?api-version=2017-12-01" ], + "x-ms-request-id": [ "4d7c6645-81d7-4604-99db-387dedcedfbf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-correlation-request-id": [ "a38ce0f4-b2c4-4a7c-aee3-71ffd18cd11e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111058Z:a38ce0f4-b2c4-4a7c-aee3-71ffd18cd11e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "1bf1e0de-4884-452a-9539-72858cc51c99" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062051Z:1bf1e0de-4884-452a-9539-72858cc51c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:10:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:20:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "74" ], + "Content-Length": [ "73" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-08T11:10:57.283Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-07-24T06:20:48.23Z\"}" } }, - "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dedd96e5-14f9-482d-b77d-5c469d555bc3?api-version=2017-12-01+2": { + "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4d7c6645-81d7-4604-99db-387dedcedfbf?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dedd96e5-14f9-482d-b77d-5c469d555bc3?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4d7c6645-81d7-4604-99db-387dedcedfbf?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "105", "106" ], - "x-ms-client-request-id": [ "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce", "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "bec2855d-f2c4-47db-bcb0-fb371728f286", "bec2855d-f2c4-47db-bcb0-fb371728f286" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,35 +59,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "46353cf1-947d-4632-9e05-3426170acd85" ], + "x-ms-request-id": [ "3110ddb3-268b-473a-b969-c8ba062d666e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], - "x-ms-correlation-request-id": [ "22dac4bc-41b5-4dcd-ad5e-df42b1b83aa1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111159Z:22dac4bc-41b5-4dcd-ad5e-df42b1b83aa1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-correlation-request-id": [ "4bb270d9-1b39-4b8e-906e-f2d2acea5d92" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062152Z:4bb270d9-1b39-4b8e-906e-f2d2acea5d92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:11:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:21:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"dedd96e5-14f9-482d-b77d-5c469d555bc3\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:10:57.283Z\"}" + "Content": "{\"name\":\"4d7c6645-81d7-4604-99db-387dedcedfbf\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:20:48.23Z\"}" } }, - "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dedd96e5-14f9-482d-b77d-5c469d555bc3?api-version=2017-12-01+3": { + "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4d7c6645-81d7-4604-99db-387dedcedfbf?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dedd96e5-14f9-482d-b77d-5c469d555bc3?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4d7c6645-81d7-4604-99db-387dedcedfbf?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "105", "106", "107" ], - "x-ms-client-request-id": [ "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce", "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce", "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "bec2855d-f2c4-47db-bcb0-fb371728f286", "bec2855d-f2c4-47db-bcb0-fb371728f286", "bec2855d-f2c4-47db-bcb0-fb371728f286" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -106,21 +99,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "08669bd8-1a5d-44d4-b2f1-20a2462636e0" ], + "x-ms-request-id": [ "d24209b3-277e-45ae-bcc0-3112eab38f03" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], - "x-ms-correlation-request-id": [ "9595cac2-935b-49f9-8202-c7793ea5ff61" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111300Z:9595cac2-935b-49f9-8202-c7793ea5ff61" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-correlation-request-id": [ "eddfc63c-74c5-4c04-8bfb-36687467f4e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062253Z:eddfc63c-74c5-4c04-8bfb-36687467f4e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:22:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"dedd96e5-14f9-482d-b77d-5c469d555bc3\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:10:57.283Z\"}" + "Content": "{\"name\":\"4d7c6645-81d7-4604-99db-387dedcedfbf\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:20:48.23Z\"}" } }, "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01+4": { @@ -129,12 +122,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "105", "106", "107", "108" ], - "x-ms-client-request-id": [ "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce", "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce", "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce", "11c0e56f-5936-4abe-9ac4-5fc89fa2f4ce" ], + "x-ms-unique-id": [ "1", "2", "3", "4" ], + "x-ms-client-request-id": [ "bec2855d-f2c4-47db-bcb0-fb371728f286", "bec2855d-f2c4-47db-bcb0-fb371728f286", "bec2855d-f2c4-47db-bcb0-fb371728f286", "bec2855d-f2c4-47db-bcb0-fb371728f286" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -145,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a66bd888-0c16-46cf-9ae1-d58694a1390f" ], + "x-ms-request-id": [ "6a0f1a19-7d9a-4904-809a-302c0aa654c4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], - "x-ms-correlation-request-id": [ "510a444b-e103-4715-a1a2-7bc43417912c" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111300Z:510a444b-e103-4715-a1a2-7bc43417912c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "b17e3561-791d-4efa-9f1d-c0340c99cc03" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062253Z:b17e3561-791d-4efa-9f1d-c0340c99cc03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:22:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "904" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-2.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:20:57.61+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2\",\"name\":\"mysql-test-100-2\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-2.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T06:30:50.09+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2\",\"name\":\"mysql-test-100-2\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "New-AzMySqlServer+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01+5": { @@ -168,12 +161,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "109" ], - "x-ms-client-request-id": [ "49cc5816-b8ea-45e3-a334-783df5f838b8" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "15f27fbc-126c-44b7-b33c-063cab7ac5b3" ], "CommandName": [ "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -184,38 +177,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e4465795-c891-4b65-a666-fbc4a273cbb1?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e3523d76-2ed6-48f1-96b3-1f3491a51e63?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e4465795-c891-4b65-a666-fbc4a273cbb1?api-version=2017-12-01" ], - "x-ms-request-id": [ "e4465795-c891-4b65-a666-fbc4a273cbb1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e3523d76-2ed6-48f1-96b3-1f3491a51e63?api-version=2017-12-01" ], + "x-ms-request-id": [ "e3523d76-2ed6-48f1-96b3-1f3491a51e63" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], - "x-ms-correlation-request-id": [ "ea0a9b3e-b92c-48b8-906e-44b5c3f43973" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111301Z:ea0a9b3e-b92c-48b8-906e-44b5c3f43973" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "5d15d1b5-46f3-48ac-905e-4ca444b7adb1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062254Z:5d15d1b5-46f3-48ac-905e-4ca444b7adb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:01 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:22:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "71" ], + "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-08T11:13:01.27Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-07-24T06:22:54.223Z\"}" } }, - "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e4465795-c891-4b65-a666-fbc4a273cbb1?api-version=2017-12-01+6": { + "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e3523d76-2ed6-48f1-96b3-1f3491a51e63?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e4465795-c891-4b65-a666-fbc4a273cbb1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e3523d76-2ed6-48f1-96b3-1f3491a51e63?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110" ], - "x-ms-client-request-id": [ "49cc5816-b8ea-45e3-a334-783df5f838b8", "49cc5816-b8ea-45e3-a334-783df5f838b8" ], + "x-ms-unique-id": [ "5", "6" ], + "x-ms-client-request-id": [ "15f27fbc-126c-44b7-b33c-063cab7ac5b3", "15f27fbc-126c-44b7-b33c-063cab7ac5b3" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -227,35 +220,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "b37c0b17-0d5c-4113-a633-547816404a4d" ], + "x-ms-request-id": [ "c79a1ca0-5170-4ecb-8dc1-9daa895a0de5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], - "x-ms-correlation-request-id": [ "db346a05-b433-4c51-b033-e28b83013394" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111316Z:db346a05-b433-4c51-b033-e28b83013394" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "04814243-c9aa-4ab3-8d8a-b98be748a2f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062309Z:04814243-c9aa-4ab3-8d8a-b98be748a2f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:23:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"e4465795-c891-4b65-a666-fbc4a273cbb1\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:13:01.27Z\"}" + "Content": "{\"name\":\"e3523d76-2ed6-48f1-96b3-1f3491a51e63\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:22:54.223Z\"}" } }, - "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e4465795-c891-4b65-a666-fbc4a273cbb1?api-version=2017-12-01+7": { + "New-AzMySqlServer+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e3523d76-2ed6-48f1-96b3-1f3491a51e63?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e4465795-c891-4b65-a666-fbc4a273cbb1?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e3523d76-2ed6-48f1-96b3-1f3491a51e63?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "109", "110", "111" ], - "x-ms-client-request-id": [ "49cc5816-b8ea-45e3-a334-783df5f838b8", "49cc5816-b8ea-45e3-a334-783df5f838b8", "49cc5816-b8ea-45e3-a334-783df5f838b8" ], + "x-ms-unique-id": [ "5", "6", "7" ], + "x-ms-client-request-id": [ "15f27fbc-126c-44b7-b33c-063cab7ac5b3", "15f27fbc-126c-44b7-b33c-063cab7ac5b3", "15f27fbc-126c-44b7-b33c-063cab7ac5b3" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -266,14 +259,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "508decba-fc9e-441f-9efa-5003982fed0e" ], + "x-ms-request-id": [ "e68b2988-165f-4e40-8717-318ef9177410" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], - "x-ms-correlation-request-id": [ "ebb72f2e-3b2e-4c39-a669-11f15f5dd987" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111317Z:ebb72f2e-3b2e-4c39-a669-11f15f5dd987" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "737f886e-7740-407a-b063-9e77a16aae58" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062310Z:737f886e-7740-407a-b063-9e77a16aae58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:23:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/New-AzMySqlServerReplica.Recording.json b/src/MySql/test/New-AzMySqlServerReplica.Recording.json index 044fd33a0940..859830ee2fd4 100644 --- a/src/MySql/test/New-AzMySqlServerReplica.Recording.json +++ b/src/MySql/test/New-AzMySqlServerReplica.Recording.json @@ -1,16 +1,16 @@ { - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "112" ], - "x-ms-client-request-id": [ "116a1ae7-1465-4ad2-8d1a-fba6ce68f23b" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "3b67a350-3b4c-4fc7-b71c-0e2d53227432" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,36 +21,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6bd3f610-af95-4322-ab0a-f8666a2248c4" ], + "x-ms-request-id": [ "6d3f6048-f90f-4199-8645-caf84a7a7bee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], - "x-ms-correlation-request-id": [ "b8157913-087e-4db6-964b-159b91c90394" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111318Z:b8157913-087e-4db6-964b-159b91c90394" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "8bf70234-b5a5-4f67-8c4f-f7a35352f378" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094130Z:8bf70234-b5a5-4f67-8c4f-f7a35352f378" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:17 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:41:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "905" ], + "Content-Length": [ "909" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+2": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+2": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "113" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -62,38 +55,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01" ], - "x-ms-request-id": [ "c76c579e-55b4-4fe9-b19d-75093eeca064" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01" ], + "x-ms-request-id": [ "d6ce3561-ffa0-4bc6-bd34-ef770b816a4a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-correlation-request-id": [ "6cf54724-7319-4aed-86f4-7b1196cfe3a4" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111322Z:6cf54724-7319-4aed-86f4-7b1196cfe3a4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "47f636e0-8255-4d2f-8873-23ae86ba5c5a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094135Z:47f636e0-8255-4d2f-8873-23ae86ba5c5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:21 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:41:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+3": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,35 +98,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "5b3bf466-8772-43fe-8529-99ca3d4fb992" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], + "x-ms-request-id": [ "8bc6cf1d-22ac-4022-941f-02f3fe21f558" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b68945bc-18b1-4118-a20f-0807111ade6d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111353Z:b68945bc-18b1-4118-a20f-0807111ade6d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "912fe1ea-531a-4a73-9cf4-f994c13810f6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094206Z:912fe1ea-531a-4a73-9cf4-f994c13810f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:13:52 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:42:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+4": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -145,35 +138,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "f00e790d-9c02-41d4-91a7-d2607107a58f" ], + "x-ms-request-id": [ "926e440a-d9d7-4acf-a6fc-8579ea62e383" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], - "x-ms-correlation-request-id": [ "5dce773d-1db5-41b6-a3f9-ed853602371c" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111425Z:5dce773d-1db5-41b6-a3f9-ed853602371c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "0b0e2bc4-ec80-426d-ac3f-87302648c0aa" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094236Z:0b0e2bc4-ec80-426d-ac3f-87302648c0aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:14:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:42:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+5": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -185,35 +178,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "7436c206-33e5-4796-805f-7eb0bb9121d7" ], + "x-ms-request-id": [ "48dd90bc-6136-4594-a660-37437833288b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], - "x-ms-correlation-request-id": [ "da9a2db1-fab3-469a-abf7-48e5454f223d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111456Z:da9a2db1-fab3-469a-abf7-48e5454f223d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "11cca631-8303-4119-9ee9-24c44fa07641" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094307Z:11cca631-8303-4119-9ee9-24c44fa07641" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:14:56 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:43:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+6": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -225,35 +218,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "c1470d96-7125-43f3-8d4c-6155fe6fbc44" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], + "x-ms-request-id": [ "131b8f62-22de-4bbd-9efe-fe98acfc0627" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "fedaf09c-7785-4847-ac77-06feb0d42614" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111527Z:fedaf09c-7785-4847-ac77-06feb0d42614" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "4d39ce2c-4e62-44be-b6c1-60af802fe64d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094337Z:4d39ce2c-4e62-44be-b6c1-60af802fe64d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:15:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:43:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+7": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -265,35 +258,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "5d2673c2-2d5a-4635-be5e-06ce8cbf0245" ], + "x-ms-request-id": [ "c4c0a698-ff08-4971-a563-e1c822f6b778" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], - "x-ms-correlation-request-id": [ "d747924d-82e1-4ab4-9199-7cd1c4fff5c0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111558Z:d747924d-82e1-4ab4-9199-7cd1c4fff5c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "57d45d28-35fb-4d64-a430-5b842e9d9195" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094407Z:57d45d28-35fb-4d64-a430-5b842e9d9195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:15:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:44:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+8": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -305,35 +298,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "0a7771af-5052-4838-b5c8-bf868a91ba03" ], + "x-ms-request-id": [ "e6d1147a-0626-4604-986c-8aef3b48bf79" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], - "x-ms-correlation-request-id": [ "96294436-8db9-4374-9685-280d1bd77ffa" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111628Z:96294436-8db9-4374-9685-280d1bd77ffa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "7414c562-fdf7-4c31-b187-a3d248e6e451" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094438Z:7414c562-fdf7-4c31-b187-a3d248e6e451" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:16:27 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:44:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+9": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -345,35 +338,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "2320fdd6-6b69-427d-8c31-ec970f76e392" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], + "x-ms-request-id": [ "740154c1-561b-4b74-8070-59b3bd639bcd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "bbca5227-e435-44ee-9188-b6aad5db8e33" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111700Z:bbca5227-e435-44ee-9188-b6aad5db8e33" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "704658cb-1893-4c16-bb2d-47c0f8882d60" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094508Z:704658cb-1893-4c16-bb2d-47c0f8882d60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:16:59 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:45:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+10": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -385,35 +378,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "e6111022-f3a3-48cc-86e9-7a02cb727cf9" ], + "x-ms-request-id": [ "9baa07f4-f0c8-4198-b104-54495de75699" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], - "x-ms-correlation-request-id": [ "e9284be5-69f3-4834-ab4b-8d1e6b0b7247" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111730Z:e9284be5-69f3-4834-ab4b-8d1e6b0b7247" ], + "x-ms-correlation-request-id": [ "8aab4332-d863-4c6e-bfa3-a6c8005ba999" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094539Z:8aab4332-d863-4c6e-bfa3-a6c8005ba999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:17:30 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:45:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+11": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -425,35 +418,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "4e59c7b2-81d8-48b6-91dc-14c46d7fa92c" ], + "x-ms-request-id": [ "6c59b9fd-aa6d-4962-8e25-eec58512bf6c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], - "x-ms-correlation-request-id": [ "04c9f94f-0181-4689-90ac-75b5b0666276" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111801Z:04c9f94f-0181-4689-90ac-75b5b0666276" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "304db940-ae90-4fbc-a955-86d4594323e2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094609Z:304db940-ae90-4fbc-a955-86d4594323e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:18:01 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:46:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+12": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -465,35 +458,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "f2fea837-d93c-4a45-86d0-22eafe3db512" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], + "x-ms-request-id": [ "8c80f8a4-04d7-44cc-a64d-a875931c740c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "e786eb3e-955e-4e2c-b176-7cf9e9d3b790" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111831Z:e786eb3e-955e-4e2c-b176-7cf9e9d3b790" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "0fc13ccc-a6b6-4ce4-8a2e-aaba4e9149b7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094639Z:0fc13ccc-a6b6-4ce4-8a2e-aaba4e9149b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:18:31 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:46:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+13": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -505,35 +498,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "6f28c4b0-92e9-4c15-a886-1a4ad8364606" ], + "x-ms-request-id": [ "36dc9fbb-0496-48cd-8267-1320bd420924" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], - "x-ms-correlation-request-id": [ "a83322af-80b9-4ff4-a09c-e80ca1ab224a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111902Z:a83322af-80b9-4ff4-a09c-e80ca1ab224a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "d19fc94b-d878-49f3-93a2-ea2bdb5b9aee" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094710Z:d19fc94b-d878-49f3-93a2-ea2bdb5b9aee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:19:02 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:47:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+14": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -545,35 +538,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "c4a5d6b0-2c6c-4e42-bef9-02abb6daaa16" ], + "x-ms-request-id": [ "b2e8bfed-3c5c-4503-b72f-2ae2603958f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], - "x-ms-correlation-request-id": [ "e28c6b96-841d-4d6c-9c3f-3bf259d8f24f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T111933Z:e28c6b96-841d-4d6c-9c3f-3bf259d8f24f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "785cd215-bb5a-4575-91c9-02cb0a717655" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094740Z:785cd215-bb5a-4575-91c9-02cb0a717655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:19:32 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:47:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+15": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -585,35 +578,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "930b2457-7469-4690-b467-1b3995b8acbd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], + "x-ms-request-id": [ "22042138-8492-4a9e-ac4e-b174c36fd520" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "c1e4133e-c391-4669-ba67-196ec677abaf" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112003Z:c1e4133e-c391-4669-ba67-196ec677abaf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "94dc9a1d-31b7-4536-8111-72376103f7e0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094811Z:94dc9a1d-31b7-4536-8111-72376103f7e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:20:03 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:48:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+16": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -625,35 +618,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "2a1f3e81-5482-41b8-9149-f80da40c5351" ], + "x-ms-request-id": [ "0db368c3-1682-4094-a922-ef43229da841" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], - "x-ms-correlation-request-id": [ "0111152c-36e9-4ea2-a4b9-6abf4abcde2f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112034Z:0111152c-36e9-4ea2-a4b9-6abf4abcde2f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "098cb28b-0b74-4c42-ad07-8d941f165980" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094841Z:098cb28b-0b74-4c42-ad07-8d941f165980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:20:33 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:48:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+17": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -665,35 +658,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "59702fc3-9d07-41fb-b5ea-449fc5367ec3" ], + "x-ms-request-id": [ "bbe9d734-98f7-47a4-86f5-c8cf4a1f125b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], - "x-ms-correlation-request-id": [ "2ffc752f-254d-49b7-b5d2-05a129feb11e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112105Z:2ffc752f-254d-49b7-b5d2-05a129feb11e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-correlation-request-id": [ "d01b45f5-090f-4886-81d3-1b067d058ad3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094913Z:d01b45f5-090f-4886-81d3-1b067d058ad3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:21:04 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:49:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+18": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -705,35 +698,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "6901c559-4d2b-47fd-95b0-9313a1c2c423" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], + "x-ms-request-id": [ "03f159f6-20a9-43f3-9325-ad72bb5dc442" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "47db9c6b-21df-43d2-9fc7-47206c2a4af1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112135Z:47db9c6b-21df-43d2-9fc7-47206c2a4af1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-correlation-request-id": [ "c58fa2ac-6335-4ff8-a2d2-15f33db7c4e0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T094944Z:c58fa2ac-6335-4ff8-a2d2-15f33db7c4e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:21:34 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:49:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+19": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -745,35 +738,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "f5405c66-3a8d-4b27-9f0b-5fa70c66b263" ], + "x-ms-request-id": [ "54ed9fc2-a4f2-4130-818c-43939cace12c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], - "x-ms-correlation-request-id": [ "d4f130b3-126e-47e2-b1f2-2d60da667ad3" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112206Z:d4f130b3-126e-47e2-b1f2-2d60da667ad3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "e0c3637f-2313-4a5f-9fa3-5f1b90721b5c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095014Z:e0c3637f-2313-4a5f-9fa3-5f1b90721b5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:22:05 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:50:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+20": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -785,35 +778,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "d08e28c9-108a-4a8f-9e06-b2d5c6d24a87" ], + "x-ms-request-id": [ "196616d9-eeeb-400e-ac84-8a8fbbb53335" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], - "x-ms-correlation-request-id": [ "2f564c28-293d-47c8-8a76-eb29055655c3" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112236Z:2f564c28-293d-47c8-8a76-eb29055655c3" ], + "x-ms-correlation-request-id": [ "8d2f5e2f-edba-413d-8dbb-c1dfddde3ffc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095044Z:8d2f5e2f-edba-413d-8dbb-c1dfddde3ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:22:35 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:50:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01+21": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c76c579e-55b4-4fe9-b19d-75093eeca064?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -825,35 +818,75 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "844af692-a40f-4bc3-b025-1f76e498b58a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], + "x-ms-request-id": [ "68de72b5-178e-4cdc-816d-931bb1022981" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "840fcf90-d7d3-40fd-9809-8ac4bff7faf9" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112307Z:840fcf90-d7d3-40fd-9809-8ac4bff7faf9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "2f726aba-0e0f-4ae5-a848-caa23a1b99c2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095115Z:2f726aba-0e0f-4ae5-a848-caa23a1b99c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:06 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:51:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c76c579e-55b4-4fe9-b19d-75093eeca064\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:13:22.287Z\"}" + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+22": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d6ce3561-ffa0-4bc6-bd34-ef770b816a4a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133" ], - "x-ms-client-request-id": [ "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f", "4aa2cfae-328b-4480-bb80-e295fb82387f" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], + "Retry-After": [ "30" ], + "x-ms-request-id": [ "b674db9f-2faa-4cd1-b117-0b8e4de59a54" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "f84836ae-fd6e-43a5-8b8f-35bf114c10fd" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095146Z:f84836ae-fd6e-43a5-8b8f-35bf114c10fd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 24 Jul 2020 09:51:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "106" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"d6ce3561-ffa0-4bc6-bd34-ef770b816a4a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T09:41:35.77Z\"}" + } + }, + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23" ], + "x-ms-client-request-id": [ "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646", "78ccd710-8df3-4878-89cc-449f8fa4c646" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "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": { @@ -864,35 +897,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "74bc0907-ebbd-4bde-b0e6-7b379e9314cc" ], + "x-ms-request-id": [ "ae5bdf2c-5cad-4df7-9347-92f777867256" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], - "x-ms-correlation-request-id": [ "d3372cc2-2609-4df2-a4bb-9f65614fb5a2" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112308Z:d3372cc2-2609-4df2-a4bb-9f65614fb5a2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "bbe149d0-d551-4296-83ae-8deb198b2e1e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095146Z:bbe149d0-d551-4296-83ae-8deb198b2e1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:07 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:51:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1061" ], + "Content-Length": [ "1062" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:25:23.023+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T09:53:36.52+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+23": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+24": { "Request": { "Method": "DELETE", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "134" ], - "x-ms-client-request-id": [ "4a855882-db96-4919-91ac-1f39fa8357ac" ], + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "ca5ea11d-b46e-4231-8552-e04b3f25edb7" ], "CommandName": [ "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -903,38 +936,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a473d381-9d14-4d4d-b84a-d7e6b7313515?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01" ], - "x-ms-request-id": [ "3ba846cb-160f-415f-a703-fc8e08e4c616" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a473d381-9d14-4d4d-b84a-d7e6b7313515?api-version=2017-12-01" ], + "x-ms-request-id": [ "a473d381-9d14-4d4d-b84a-d7e6b7313515" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], - "x-ms-correlation-request-id": [ "2e6729c0-bae6-4740-8036-8b0135bceb7d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112309Z:2e6729c0-bae6-4740-8036-8b0135bceb7d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "7232749b-f975-49d8-875a-c5f09e8a3664" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095147Z:7232749b-f975-49d8-875a-c5f09e8a3664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:51:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "72" ], + "Content-Length": [ "71" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-08T11:23:09.153Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-07-24T09:51:47.36Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01+24": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a473d381-9d14-4d4d-b84a-d7e6b7313515?api-version=2017-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a473d381-9d14-4d4d-b84a-d7e6b7313515?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "134", "135" ], - "x-ms-client-request-id": [ "4a855882-db96-4919-91ac-1f39fa8357ac", "4a855882-db96-4919-91ac-1f39fa8357ac" ], + "x-ms-unique-id": [ "24", "25" ], + "x-ms-client-request-id": [ "ca5ea11d-b46e-4231-8552-e04b3f25edb7", "ca5ea11d-b46e-4231-8552-e04b3f25edb7" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -946,35 +979,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9692b0e1-283f-4337-9c56-80efa09b4fd4" ], + "x-ms-request-id": [ "62e9d394-4336-43ef-8c0a-ea4cd7c2373f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], - "x-ms-correlation-request-id": [ "ba199b23-cb8a-486d-b54c-3bd0c380ae59" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112324Z:ba199b23-cb8a-486d-b54c-3bd0c380ae59" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "a7432e92-f967-4f8f-a129-6a322a38fab8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095202Z:a7432e92-f967-4f8f-a129-6a322a38fab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:23 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:52:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"3ba846cb-160f-415f-a703-fc8e08e4c616\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:23:09.153Z\"}" + "Content": "{\"name\":\"a473d381-9d14-4d4d-b84a-d7e6b7313515\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T09:51:47.36Z\"}" } }, - "New-AzMySqlServerReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01+25": { + "New-AzMySqlReplica+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a473d381-9d14-4d4d-b84a-d7e6b7313515?api-version=2017-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3ba846cb-160f-415f-a703-fc8e08e4c616?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a473d381-9d14-4d4d-b84a-d7e6b7313515?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "134", "135", "136" ], - "x-ms-client-request-id": [ "4a855882-db96-4919-91ac-1f39fa8357ac", "4a855882-db96-4919-91ac-1f39fa8357ac", "4a855882-db96-4919-91ac-1f39fa8357ac" ], + "x-ms-unique-id": [ "24", "25", "26" ], + "x-ms-client-request-id": [ "ca5ea11d-b46e-4231-8552-e04b3f25edb7", "ca5ea11d-b46e-4231-8552-e04b3f25edb7", "ca5ea11d-b46e-4231-8552-e04b3f25edb7" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -985,14 +1018,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5247383a-d49d-4ca2-9938-b7a7227f4eb4" ], + "x-ms-request-id": [ "d5657936-9743-4fd8-a9b6-a981149adb31" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], - "x-ms-correlation-request-id": [ "217595c7-cef4-4d60-9e1c-e6c424efa5c6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112325Z:217595c7-cef4-4d60-9e1c-e6c424efa5c6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "5dbb42e9-ada6-4484-bb74-9a86818adfe4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T095203Z:5dbb42e9-ada6-4484-bb74-9a86818adfe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 09:52:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/New-AzMySqlVirtualNetworkRule.Recording.json b/src/MySql/test/New-AzMySqlVirtualNetworkRule.Recording.json index b365952899f7..bedea49cbb5a 100644 --- a/src/MySql/test/New-AzMySqlVirtualNetworkRule.Recording.json +++ b/src/MySql/test/New-AzMySqlVirtualNetworkRule.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "137" ], - "x-ms-client-request-id": [ "cfaf4798-0c8f-47ac-a4d5-fecb02ae7b2d" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c243cb2e-6f7f-4914-af38-9ada7afb3355?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e68a0466-f700-4a65-b792-1903767f0d72?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c243cb2e-6f7f-4914-af38-9ada7afb3355?api-version=2017-12-01" ], - "x-ms-request-id": [ "c243cb2e-6f7f-4914-af38-9ada7afb3355" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e68a0466-f700-4a65-b792-1903767f0d72?api-version=2017-12-01" ], + "x-ms-request-id": [ "e68a0466-f700-4a65-b792-1903767f0d72" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-correlation-request-id": [ "12f1920c-b8f6-4c1c-afaf-c019ac4962f1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112327Z:12f1920c-b8f6-4c1c-afaf-c019ac4962f1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "dc587ab6-fa8e-4140-959f-18aee2b1ae80" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062438Z:dc587ab6-fa8e-4140-959f-18aee2b1ae80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:24:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "90" ], + "Content-Length": [ "89" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:23:25.873Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:24:37.15Z\"}" } }, - "New-AzMySqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c243cb2e-6f7f-4914-af38-9ada7afb3355?api-version=2017-12-01+2": { + "New-AzMySqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e68a0466-f700-4a65-b792-1903767f0d72?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c243cb2e-6f7f-4914-af38-9ada7afb3355?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e68a0466-f700-4a65-b792-1903767f0d72?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "137", "138" ], - "x-ms-client-request-id": [ "cfaf4798-0c8f-47ac-a4d5-fecb02ae7b2d", "cfaf4798-0c8f-47ac-a4d5-fecb02ae7b2d" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "4d24a258-0873-4bed-b67b-abcc2aa6a60c", "4d24a258-0873-4bed-b67b-abcc2aa6a60c" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "21f3816b-a849-432d-8c76-dec73cd05e90" ], + "x-ms-request-id": [ "c01bb68a-9f58-4cad-80f5-78bb87afda75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], - "x-ms-correlation-request-id": [ "76a1c3a2-b193-4c50-a583-47ece3f5bc60" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112357Z:76a1c3a2-b193-4c50-a583-47ece3f5bc60" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "6982aa48-2267-4cc0-8ce1-9a228d205dde" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062508Z:6982aa48-2267-4cc0-8ce1-9a228d205dde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:25:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"c243cb2e-6f7f-4914-af38-9ada7afb3355\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:23:25.873Z\"}" + "Content": "{\"name\":\"e68a0466-f700-4a65-b792-1903767f0d72\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:24:37.15Z\"}" } }, "New-AzMySqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "137", "138", "139" ], - "x-ms-client-request-id": [ "cfaf4798-0c8f-47ac-a4d5-fecb02ae7b2d", "cfaf4798-0c8f-47ac-a4d5-fecb02ae7b2d", "cfaf4798-0c8f-47ac-a4d5-fecb02ae7b2d" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "4d24a258-0873-4bed-b67b-abcc2aa6a60c", "4d24a258-0873-4bed-b67b-abcc2aa6a60c", "4d24a258-0873-4bed-b67b-abcc2aa6a60c" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7b167b17-3a73-4e83-a3f6-2180a4c52ef7" ], + "x-ms-request-id": [ "376aa983-6825-4f48-b8b4-e289d81cab8b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], - "x-ms-correlation-request-id": [ "f97f8b31-2ea6-4a7a-ad21-24bafe9259cc" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112357Z:f97f8b31-2ea6-4a7a-ad21-24bafe9259cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "983acd3f-fc95-40af-ad4d-43755bb55790" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062509Z:983acd3f-fc95-40af-ad4d-43755bb55790" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:25:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -128,12 +121,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "140" ], - "x-ms-client-request-id": [ "6bd76d23-2ed2-461d-af2b-dd550b530a07" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "c2657092-7e40-48bd-a1ea-f4cee57f8ef9" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,38 +137,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/534b8941-6fa5-4681-81a9-f446c96a88de?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d5f1ca93-3065-4c56-bed5-9d9c16b0e763?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/534b8941-6fa5-4681-81a9-f446c96a88de?api-version=2017-12-01" ], - "x-ms-request-id": [ "534b8941-6fa5-4681-81a9-f446c96a88de" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d5f1ca93-3065-4c56-bed5-9d9c16b0e763?api-version=2017-12-01" ], + "x-ms-request-id": [ "d5f1ca93-3065-4c56-bed5-9d9c16b0e763" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14989" ], - "x-ms-correlation-request-id": [ "f482d7d6-1e51-428e-a406-a82f3a63dbbe" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112359Z:f482d7d6-1e51-428e-a406-a82f3a63dbbe" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-correlation-request-id": [ "019b0ead-c3b8-414e-afbd-05f0b8cd8a65" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062510Z:019b0ead-c3b8-414e-afbd-05f0b8cd8a65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:23:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:25:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:23:57.937Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:25:09.633Z\"}" } }, - "New-AzMySqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/534b8941-6fa5-4681-81a9-f446c96a88de?api-version=2017-12-01+5": { + "New-AzMySqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d5f1ca93-3065-4c56-bed5-9d9c16b0e763?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/534b8941-6fa5-4681-81a9-f446c96a88de?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d5f1ca93-3065-4c56-bed5-9d9c16b0e763?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "140", "141" ], - "x-ms-client-request-id": [ "6bd76d23-2ed2-461d-af2b-dd550b530a07", "6bd76d23-2ed2-461d-af2b-dd550b530a07" ], + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "c2657092-7e40-48bd-a1ea-f4cee57f8ef9", "c2657092-7e40-48bd-a1ea-f4cee57f8ef9" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -187,35 +180,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "e4f8d7a2-2dac-4ac1-aad6-d439af1b863b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], + "x-ms-request-id": [ "77ae9903-b893-4126-aef4-624a704f1fea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b541c477-93b0-4b3b-868c-f3362d4f1424" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112414Z:b541c477-93b0-4b3b-868c-f3362d4f1424" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "db108ba4-22e3-491f-976b-54b036e62bf6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062526Z:db108ba4-22e3-491f-976b-54b036e62bf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:13 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:25:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"534b8941-6fa5-4681-81a9-f446c96a88de\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:23:57.937Z\"}" + "Content": "{\"name\":\"d5f1ca93-3065-4c56-bed5-9d9c16b0e763\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:25:09.633Z\"}" } }, - "New-AzMySqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/534b8941-6fa5-4681-81a9-f446c96a88de?api-version=2017-12-01+6": { + "New-AzMySqlVirtualNetworkRule+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d5f1ca93-3065-4c56-bed5-9d9c16b0e763?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/534b8941-6fa5-4681-81a9-f446c96a88de?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d5f1ca93-3065-4c56-bed5-9d9c16b0e763?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "140", "141", "142" ], - "x-ms-client-request-id": [ "6bd76d23-2ed2-461d-af2b-dd550b530a07", "6bd76d23-2ed2-461d-af2b-dd550b530a07", "6bd76d23-2ed2-461d-af2b-dd550b530a07" ], + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "c2657092-7e40-48bd-a1ea-f4cee57f8ef9", "c2657092-7e40-48bd-a1ea-f4cee57f8ef9", "c2657092-7e40-48bd-a1ea-f4cee57f8ef9" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -226,14 +219,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0c3492d8-abe3-44e0-a8d6-ca828bcb18db" ], + "x-ms-request-id": [ "586d979a-e818-4a23-80ea-26cb98127171" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], - "x-ms-correlation-request-id": [ "f07cc2c7-39af-42a3-8ee3-77af7a776892" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112415Z:f07cc2c7-39af-42a3-8ee3-77af7a776892" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "424b6a2a-1fb1-4824-8f01-547de071e239" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062526Z:424b6a2a-1fb1-4824-8f01-547de071e239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:14 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:25:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Remove-AzMySqlFirewallRule.Recording.json b/src/MySql/test/Remove-AzMySqlFirewallRule.Recording.json index 7705a646f9b1..68f4393c9b4c 100644 --- a/src/MySql/test/Remove-AzMySqlFirewallRule.Recording.json +++ b/src/MySql/test/Remove-AzMySqlFirewallRule.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "6ca46fda-963d-4a71-a1ca-77e6bdb0d55c" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1c357a22-c07a-4d84-a223-f28adf8c5c1a?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/028ac200-d31d-46e6-9aaf-01ff4f7b09a7?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1c357a22-c07a-4d84-a223-f28adf8c5c1a?api-version=2017-12-01" ], - "x-ms-request-id": [ "1c357a22-c07a-4d84-a223-f28adf8c5c1a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/028ac200-d31d-46e6-9aaf-01ff4f7b09a7?api-version=2017-12-01" ], + "x-ms-request-id": [ "028ac200-d31d-46e6-9aaf-01ff4f7b09a7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-correlation-request-id": [ "52ec0da0-56e8-4ccb-92dc-8bde2fe8c6bd" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112417Z:52ec0da0-56e8-4ccb-92dc-8bde2fe8c6bd" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "6fbef9e7-bd2e-414a-b25e-9cacffe62ee8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062916Z:6fbef9e7-bd2e-414a-b25e-9cacffe62ee8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:29:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T11:24:16.037Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T06:29:15.293Z\"}" } }, - "Remove-AzMySqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1c357a22-c07a-4d84-a223-f28adf8c5c1a?api-version=2017-12-01+2": { + "Remove-AzMySqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/028ac200-d31d-46e6-9aaf-01ff4f7b09a7?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1c357a22-c07a-4d84-a223-f28adf8c5c1a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/028ac200-d31d-46e6-9aaf-01ff4f7b09a7?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "143", "144" ], - "x-ms-client-request-id": [ "6ca46fda-963d-4a71-a1ca-77e6bdb0d55c", "6ca46fda-963d-4a71-a1ca-77e6bdb0d55c" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "318cee93-d126-4056-86ae-7f6c5f5a19e4", "318cee93-d126-4056-86ae-7f6c5f5a19e4" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9d9c4375-de72-4ba3-88de-ed29e79db11d" ], + "x-ms-request-id": [ "f9142493-1d64-4281-80a7-11b8ffaa33bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], - "x-ms-correlation-request-id": [ "ff9f2dc6-cfa0-4033-8bdc-d7a20e026e63" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112432Z:ff9f2dc6-cfa0-4033-8bdc-d7a20e026e63" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "30591e81-e056-4a78-89ea-caea75e67eb8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062931Z:30591e81-e056-4a78-89ea-caea75e67eb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:31 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:29:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"1c357a22-c07a-4d84-a223-f28adf8c5c1a\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:24:16.037Z\"}" + "Content": "{\"name\":\"028ac200-d31d-46e6-9aaf-01ff4f7b09a7\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:29:15.293Z\"}" } }, "Remove-AzMySqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "143", "144", "145" ], - "x-ms-client-request-id": [ "6ca46fda-963d-4a71-a1ca-77e6bdb0d55c", "6ca46fda-963d-4a71-a1ca-77e6bdb0d55c", "6ca46fda-963d-4a71-a1ca-77e6bdb0d55c" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "318cee93-d126-4056-86ae-7f6c5f5a19e4", "318cee93-d126-4056-86ae-7f6c5f5a19e4", "318cee93-d126-4056-86ae-7f6c5f5a19e4" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dc17bf1f-a14b-494a-8dff-278b8b72ddce" ], + "x-ms-request-id": [ "69c34683-5357-4cf9-a1fc-9807b23205ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], - "x-ms-correlation-request-id": [ "0e5ca308-16ea-4b96-a600-e9f6d9d627ca" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112432Z:0e5ca308-16ea-4b96-a600-e9f6d9d627ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "b509bbf8-f54f-434f-91f8-f03a84bb1122" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062932Z:b509bbf8-f54f-434f-91f8-f03a84bb1122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:31 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:29:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -128,12 +121,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "d970578e-ee69-44b2-9fc6-62d35340cec2" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "e5b4c6d1-bca0-42e1-8657-20bece8985a8" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,38 +137,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6d1cffae-51e5-44a5-a479-6162bedb0884?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/5c2361da-8118-4aa9-a96c-c7f7ab422c0d?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d1cffae-51e5-44a5-a479-6162bedb0884?api-version=2017-12-01" ], - "x-ms-request-id": [ "6d1cffae-51e5-44a5-a479-6162bedb0884" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5c2361da-8118-4aa9-a96c-c7f7ab422c0d?api-version=2017-12-01" ], + "x-ms-request-id": [ "5c2361da-8118-4aa9-a96c-c7f7ab422c0d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], - "x-ms-correlation-request-id": [ "1e45071a-faa4-4c5e-9db1-cd42e7edb384" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112434Z:1e45071a-faa4-4c5e-9db1-cd42e7edb384" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "b8a6078d-50e9-46f8-a6c3-ad5a93488f67" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062933Z:b8a6078d-50e9-46f8-a6c3-ad5a93488f67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:34 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:29:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "83" ], + "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T11:24:33.19Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-07-24T06:29:32.747Z\"}" } }, - "Remove-AzMySqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d1cffae-51e5-44a5-a479-6162bedb0884?api-version=2017-12-01+5": { + "Remove-AzMySqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5c2361da-8118-4aa9-a96c-c7f7ab422c0d?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d1cffae-51e5-44a5-a479-6162bedb0884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5c2361da-8118-4aa9-a96c-c7f7ab422c0d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "146", "147" ], - "x-ms-client-request-id": [ "d970578e-ee69-44b2-9fc6-62d35340cec2", "d970578e-ee69-44b2-9fc6-62d35340cec2" ], + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "e5b4c6d1-bca0-42e1-8657-20bece8985a8", "e5b4c6d1-bca0-42e1-8657-20bece8985a8" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -187,35 +180,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "19d7eabf-51aa-49d1-a1f0-9bdfffa5f3ac" ], + "x-ms-request-id": [ "54518ee6-9317-401c-9db3-ee3640f0f2d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], - "x-ms-correlation-request-id": [ "f917711c-7adb-4f10-9e99-24c689b3a660" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112449Z:f917711c-7adb-4f10-9e99-24c689b3a660" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "e99cbe83-0a4c-4e46-b875-9dc33bc3f11a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062949Z:e99cbe83-0a4c-4e46-b875-9dc33bc3f11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:49 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:29:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"6d1cffae-51e5-44a5-a479-6162bedb0884\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:24:33.19Z\"}" + "Content": "{\"name\":\"5c2361da-8118-4aa9-a96c-c7f7ab422c0d\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:29:32.747Z\"}" } }, - "Remove-AzMySqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6d1cffae-51e5-44a5-a479-6162bedb0884?api-version=2017-12-01+6": { + "Remove-AzMySqlFirewallRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/5c2361da-8118-4aa9-a96c-c7f7ab422c0d?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6d1cffae-51e5-44a5-a479-6162bedb0884?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/5c2361da-8118-4aa9-a96c-c7f7ab422c0d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "146", "147", "148" ], - "x-ms-client-request-id": [ "d970578e-ee69-44b2-9fc6-62d35340cec2", "d970578e-ee69-44b2-9fc6-62d35340cec2", "d970578e-ee69-44b2-9fc6-62d35340cec2" ], + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "e5b4c6d1-bca0-42e1-8657-20bece8985a8", "e5b4c6d1-bca0-42e1-8657-20bece8985a8", "e5b4c6d1-bca0-42e1-8657-20bece8985a8" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -226,14 +219,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8e74b28d-169b-464f-9fc1-2b0051661df8" ], + "x-ms-request-id": [ "b35ed3b6-0ea8-4239-ae88-156db82f1fea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], - "x-ms-correlation-request-id": [ "38812cf7-695b-4097-89d8-40b09e896448" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112449Z:38812cf7-695b-4097-89d8-40b09e896448" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "39235317-f98c-4df8-9f0d-2efa7b152e3a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062949Z:39235317-f98c-4df8-9f0d-2efa7b152e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:49 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:29:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -248,13 +241,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "c3651970-6ad1-47b5-82f1-2dca5e801926" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -266,38 +252,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ad3e6cfe-b67d-40c9-a2e2-67e04e4326e6?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/3f510b53-f32e-4aed-84e3-aef22c9c55cd?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ad3e6cfe-b67d-40c9-a2e2-67e04e4326e6?api-version=2017-12-01" ], - "x-ms-request-id": [ "ad3e6cfe-b67d-40c9-a2e2-67e04e4326e6" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3f510b53-f32e-4aed-84e3-aef22c9c55cd?api-version=2017-12-01" ], + "x-ms-request-id": [ "3f510b53-f32e-4aed-84e3-aef22c9c55cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-correlation-request-id": [ "7b1dea7b-2a44-495d-afc1-a7ff654c3356" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112451Z:7b1dea7b-2a44-495d-afc1-a7ff654c3356" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "572dcdbc-843f-48ce-90e1-12a9c296d121" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T062951Z:572dcdbc-843f-48ce-90e1-12a9c296d121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:24:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:29:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T11:24:50.253Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T06:29:50.197Z\"}" } }, - "Remove-AzMySqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ad3e6cfe-b67d-40c9-a2e2-67e04e4326e6?api-version=2017-12-01+2": { + "Remove-AzMySqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3f510b53-f32e-4aed-84e3-aef22c9c55cd?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ad3e6cfe-b67d-40c9-a2e2-67e04e4326e6?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/3f510b53-f32e-4aed-84e3-aef22c9c55cd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "149", "150" ], - "x-ms-client-request-id": [ "c3651970-6ad1-47b5-82f1-2dca5e801926", "c3651970-6ad1-47b5-82f1-2dca5e801926" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "7", "8" ], + "x-ms-client-request-id": [ "7ff00f30-d36e-4975-b523-67a07004f2b1", "7ff00f30-d36e-4975-b523-67a07004f2b1" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -309,21 +295,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "c8367617-cb99-4ae1-9aaa-45b15374c102" ], + "x-ms-request-id": [ "d1b47bab-578c-424f-a63f-adb40d01b4de" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], - "x-ms-correlation-request-id": [ "48fa44e9-842c-4e6f-a216-f7063e240ce2" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112506Z:48fa44e9-842c-4e6f-a216-f7063e240ce2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "6383090a-ee20-4280-9259-b89ecd9a25b6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063006Z:6383090a-ee20-4280-9259-b89ecd9a25b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:25:06 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:30:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ad3e6cfe-b67d-40c9-a2e2-67e04e4326e6\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:24:50.253Z\"}" + "Content": "{\"name\":\"3f510b53-f32e-4aed-84e3-aef22c9c55cd\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:29:50.197Z\"}" } }, "Remove-AzMySqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -332,12 +318,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "149", "150", "151" ], - "x-ms-client-request-id": [ "c3651970-6ad1-47b5-82f1-2dca5e801926", "c3651970-6ad1-47b5-82f1-2dca5e801926", "c3651970-6ad1-47b5-82f1-2dca5e801926" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "7", "8", "9" ], + "x-ms-client-request-id": [ "7ff00f30-d36e-4975-b523-67a07004f2b1", "7ff00f30-d36e-4975-b523-67a07004f2b1", "7ff00f30-d36e-4975-b523-67a07004f2b1" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -348,14 +334,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f94b4e62-dad9-495c-a4f0-41eb26bcee32" ], + "x-ms-request-id": [ "7ca1d0b7-4d5f-4bca-9cc7-9d781ea9805d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], - "x-ms-correlation-request-id": [ "afa4d543-b196-48e6-9cb3-a2ee6e2792ca" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112507Z:afa4d543-b196-48e6-9cb3-a2ee6e2792ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "301881d2-fba4-4115-99f9-cf202fdd8b74" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063007Z:301881d2-fba4-4115-99f9-cf202fdd8b74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:25:06 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:30:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -371,12 +357,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "152" ], - "x-ms-client-request-id": [ "726c3593-0a41-4680-9767-a37eab365d9d" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "f2c12900-742a-4f88-bc15-254a00785c55" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,38 +373,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6accc17e-2fd0-4a7f-8eb3-745a07fe925e?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/540e290a-beb7-44fb-82b1-411e265905a9?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6accc17e-2fd0-4a7f-8eb3-745a07fe925e?api-version=2017-12-01" ], - "x-ms-request-id": [ "6accc17e-2fd0-4a7f-8eb3-745a07fe925e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/540e290a-beb7-44fb-82b1-411e265905a9?api-version=2017-12-01" ], + "x-ms-request-id": [ "540e290a-beb7-44fb-82b1-411e265905a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], - "x-ms-correlation-request-id": [ "b4ca5c8a-e823-45db-9a54-81919cc7a7cd" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112508Z:b4ca5c8a-e823-45db-9a54-81919cc7a7cd" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "3422287e-e725-443a-91ee-3cd6482a8fa1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063008Z:3422287e-e725-443a-91ee-3cd6482a8fa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:25:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:30:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T11:25:07.583Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-07-24T06:30:07.697Z\"}" } }, - "Remove-AzMySqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6accc17e-2fd0-4a7f-8eb3-745a07fe925e?api-version=2017-12-01+5": { + "Remove-AzMySqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/540e290a-beb7-44fb-82b1-411e265905a9?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6accc17e-2fd0-4a7f-8eb3-745a07fe925e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/540e290a-beb7-44fb-82b1-411e265905a9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "152", "153" ], - "x-ms-client-request-id": [ "726c3593-0a41-4680-9767-a37eab365d9d", "726c3593-0a41-4680-9767-a37eab365d9d" ], + "x-ms-unique-id": [ "10", "11" ], + "x-ms-client-request-id": [ "f2c12900-742a-4f88-bc15-254a00785c55", "f2c12900-742a-4f88-bc15-254a00785c55" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_DeleteViaIdentity", "Remove-AzMySqlFirewallRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -430,35 +416,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "62a8fbc3-58f4-46d8-9ade-6a6bee5acd80" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], + "x-ms-request-id": [ "a7f51368-65a5-4aae-a896-1b46cb8b434c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "4c0af9d0-079d-4d3c-bc0b-16f45ad005d5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112524Z:4c0af9d0-079d-4d3c-bc0b-16f45ad005d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "852c132e-18b1-4984-941b-649eee17c36e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063024Z:852c132e-18b1-4984-941b-649eee17c36e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:25:23 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:30:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"6accc17e-2fd0-4a7f-8eb3-745a07fe925e\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:25:07.583Z\"}" + "Content": "{\"name\":\"540e290a-beb7-44fb-82b1-411e265905a9\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:30:07.697Z\"}" } }, - "Remove-AzMySqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6accc17e-2fd0-4a7f-8eb3-745a07fe925e?api-version=2017-12-01+6": { + "Remove-AzMySqlFirewallRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/540e290a-beb7-44fb-82b1-411e265905a9?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6accc17e-2fd0-4a7f-8eb3-745a07fe925e?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/540e290a-beb7-44fb-82b1-411e265905a9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "152", "153", "154" ], - "x-ms-client-request-id": [ "726c3593-0a41-4680-9767-a37eab365d9d", "726c3593-0a41-4680-9767-a37eab365d9d", "726c3593-0a41-4680-9767-a37eab365d9d" ], + "x-ms-unique-id": [ "10", "11", "12" ], + "x-ms-client-request-id": [ "f2c12900-742a-4f88-bc15-254a00785c55", "f2c12900-742a-4f88-bc15-254a00785c55", "f2c12900-742a-4f88-bc15-254a00785c55" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_DeleteViaIdentity", "Remove-AzMySqlFirewallRule_DeleteViaIdentity", "Remove-AzMySqlFirewallRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -469,14 +455,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "37d95d60-b1cd-4515-a36d-76d85243f6a3" ], + "x-ms-request-id": [ "258bd49f-df3c-4ff3-824f-de138ec92f15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], - "x-ms-correlation-request-id": [ "4ba283a1-b782-4355-894c-b2c3403148d6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112524Z:4ba283a1-b782-4355-894c-b2c3403148d6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "6f7e78a6-b20b-4d45-a159-1191303c15b4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063024Z:6f7e78a6-b20b-4d45-a159-1191303c15b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:25:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:30:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Remove-AzMySqlServer.Recording.json b/src/MySql/test/Remove-AzMySqlServer.Recording.json index 26a255294739..02af92c09120 100644 --- a/src/MySql/test/Remove-AzMySqlServer.Recording.json +++ b/src/MySql/test/Remove-AzMySqlServer.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"createMode\": \"Default\",\n \"administratorLogin\": \"pwsh\",\n \"administratorLoginPassword\": \"Pa88word!\"\n },\n \"sku\": {\n \"name\": \"GP_Gen5_4\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "96723919-18a6-41a5-8817-d6f8d02bc2ad" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4e48ddd7-c460-4974-b900-4486bad8b076?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/151e2111-8c01-41f2-b1c4-10650c66ab6c?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e48ddd7-c460-4974-b900-4486bad8b076?api-version=2017-12-01" ], - "x-ms-request-id": [ "4e48ddd7-c460-4974-b900-4486bad8b076" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/151e2111-8c01-41f2-b1c4-10650c66ab6c?api-version=2017-12-01" ], + "x-ms-request-id": [ "151e2111-8c01-41f2-b1c4-10650c66ab6c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-correlation-request-id": [ "383147ce-8c92-4555-a7ea-904e5274c2ae" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112531Z:383147ce-8c92-4555-a7ea-904e5274c2ae" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "1f11f495-6cb3-4412-8592-6c093e708116" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063239Z:1f11f495-6cb3-4412-8592-6c093e708116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:25:31 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:32:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-08T11:25:30.433Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-07-24T06:32:38.043Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e48ddd7-c460-4974-b900-4486bad8b076?api-version=2017-12-01+2": { + "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/151e2111-8c01-41f2-b1c4-10650c66ab6c?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e48ddd7-c460-4974-b900-4486bad8b076?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/151e2111-8c01-41f2-b1c4-10650c66ab6c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "155", "156" ], - "x-ms-client-request-id": [ "96723919-18a6-41a5-8817-d6f8d02bc2ad", "96723919-18a6-41a5-8817-d6f8d02bc2ad" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "a65f55c7-54b5-472b-b096-3260deb652e7", "a65f55c7-54b5-472b-b096-3260deb652e7" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,35 +59,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "eb61de8b-6c2c-4aca-a8de-c84e003d52ed" ], + "x-ms-request-id": [ "59b5c4d7-d83b-48e8-a011-0cb90709e9e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], - "x-ms-correlation-request-id": [ "3b82c4e9-6159-4e14-a89e-5083a9f35229" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112632Z:3b82c4e9-6159-4e14-a89e-5083a9f35229" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "ec9fb2fb-f890-4a46-8646-a617576081c6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063339Z:ec9fb2fb-f890-4a46-8646-a617576081c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:26:32 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:33:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e48ddd7-c460-4974-b900-4486bad8b076\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:25:30.433Z\"}" + "Content": "{\"name\":\"151e2111-8c01-41f2-b1c4-10650c66ab6c\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:32:38.043Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e48ddd7-c460-4974-b900-4486bad8b076?api-version=2017-12-01+3": { + "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/151e2111-8c01-41f2-b1c4-10650c66ab6c?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e48ddd7-c460-4974-b900-4486bad8b076?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/151e2111-8c01-41f2-b1c4-10650c66ab6c?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "155", "156", "157" ], - "x-ms-client-request-id": [ "96723919-18a6-41a5-8817-d6f8d02bc2ad", "96723919-18a6-41a5-8817-d6f8d02bc2ad", "96723919-18a6-41a5-8817-d6f8d02bc2ad" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "a65f55c7-54b5-472b-b096-3260deb652e7", "a65f55c7-54b5-472b-b096-3260deb652e7", "a65f55c7-54b5-472b-b096-3260deb652e7" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -106,21 +99,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "eec7a61d-888a-4ae7-b15f-a9e48c64d0e1" ], + "x-ms-request-id": [ "4a39db80-8126-4937-9f0f-44d06c3c398d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], - "x-ms-correlation-request-id": [ "591a9f3a-f2ca-4e71-9791-e70790e07722" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112733Z:591a9f3a-f2ca-4e71-9791-e70790e07722" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "e4fafab3-26da-4e33-af24-82dba54f423b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063440Z:e4fafab3-26da-4e33-af24-82dba54f423b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:27:33 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:34:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e48ddd7-c460-4974-b900-4486bad8b076\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:25:30.433Z\"}" + "Content": "{\"name\":\"151e2111-8c01-41f2-b1c4-10650c66ab6c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:32:38.043Z\"}" } }, "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01+4": { @@ -129,12 +122,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "155", "156", "157", "158" ], - "x-ms-client-request-id": [ "96723919-18a6-41a5-8817-d6f8d02bc2ad", "96723919-18a6-41a5-8817-d6f8d02bc2ad", "96723919-18a6-41a5-8817-d6f8d02bc2ad", "96723919-18a6-41a5-8817-d6f8d02bc2ad" ], + "x-ms-unique-id": [ "1", "2", "3", "4" ], + "x-ms-client-request-id": [ "a65f55c7-54b5-472b-b096-3260deb652e7", "a65f55c7-54b5-472b-b096-3260deb652e7", "a65f55c7-54b5-472b-b096-3260deb652e7", "a65f55c7-54b5-472b-b096-3260deb652e7" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -145,21 +138,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c2d366b0-df40-4e03-b251-e7b1959b5587" ], + "x-ms-request-id": [ "9d2225f3-7b78-4b48-bb5f-13d9a27c2428" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], - "x-ms-correlation-request-id": [ "29ddc83d-8d3f-4691-a96c-37ed100f88ad" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112734Z:29ddc83d-8d3f-4691-a96c-37ed100f88ad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "eded30b6-ddb6-4085-a2b2-568699c991d7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063441Z:eded30b6-ddb6-4085-a2b2-568699c991d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:27:33 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:34:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "905" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-2.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:35:30.743+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2\",\"name\":\"mysql-test-100-2\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-2.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T06:42:38.307+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2\",\"name\":\"mysql-test-100-2\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Remove-AzMySqlServer+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01+5": { @@ -168,12 +161,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "159" ], - "x-ms-client-request-id": [ "50aa4bf7-d33e-47c8-8c06-f618f23962ab" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "333dbdd6-1744-4299-bb86-c2201ad30417" ], "CommandName": [ "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -184,38 +177,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4a827cc5-02d5-4117-8dbd-432913e1e34d?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/97c1573e-d290-468d-9125-214a3918622a?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4a827cc5-02d5-4117-8dbd-432913e1e34d?api-version=2017-12-01" ], - "x-ms-request-id": [ "4a827cc5-02d5-4117-8dbd-432913e1e34d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/97c1573e-d290-468d-9125-214a3918622a?api-version=2017-12-01" ], + "x-ms-request-id": [ "97c1573e-d290-468d-9125-214a3918622a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], - "x-ms-correlation-request-id": [ "9605537d-3fa3-42bf-9ee6-d45681e305ac" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112735Z:9605537d-3fa3-42bf-9ee6-d45681e305ac" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "dc42dff3-8ed7-4f35-bfc3-377acede0e5f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063442Z:dc42dff3-8ed7-4f35-bfc3-377acede0e5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:27:35 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:34:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "72" ], + "Content-Length": [ "71" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-08T11:27:35.483Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-07-24T06:34:41.87Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4a827cc5-02d5-4117-8dbd-432913e1e34d?api-version=2017-12-01+6": { + "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/97c1573e-d290-468d-9125-214a3918622a?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4a827cc5-02d5-4117-8dbd-432913e1e34d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/97c1573e-d290-468d-9125-214a3918622a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "159", "160" ], - "x-ms-client-request-id": [ "50aa4bf7-d33e-47c8-8c06-f618f23962ab", "50aa4bf7-d33e-47c8-8c06-f618f23962ab" ], + "x-ms-unique-id": [ "5", "6" ], + "x-ms-client-request-id": [ "333dbdd6-1744-4299-bb86-c2201ad30417", "333dbdd6-1744-4299-bb86-c2201ad30417" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -227,35 +220,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9353ac9d-c793-4918-95f1-abd4453ac43d" ], + "x-ms-request-id": [ "2b4bf993-e9b2-4553-8532-ca480198681f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], - "x-ms-correlation-request-id": [ "8a1f07a7-915b-4254-a226-1ee30cff45dc" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112750Z:8a1f07a7-915b-4254-a226-1ee30cff45dc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "6f0b467a-9492-4de5-a874-06992c9dae52" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063457Z:6f0b467a-9492-4de5-a874-06992c9dae52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:27:50 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:34:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4a827cc5-02d5-4117-8dbd-432913e1e34d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:27:35.483Z\"}" + "Content": "{\"name\":\"97c1573e-d290-468d-9125-214a3918622a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:34:41.87Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4a827cc5-02d5-4117-8dbd-432913e1e34d?api-version=2017-12-01+7": { + "Remove-AzMySqlServer+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/97c1573e-d290-468d-9125-214a3918622a?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4a827cc5-02d5-4117-8dbd-432913e1e34d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/97c1573e-d290-468d-9125-214a3918622a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "159", "160", "161" ], - "x-ms-client-request-id": [ "50aa4bf7-d33e-47c8-8c06-f618f23962ab", "50aa4bf7-d33e-47c8-8c06-f618f23962ab", "50aa4bf7-d33e-47c8-8c06-f618f23962ab" ], + "x-ms-unique-id": [ "5", "6", "7" ], + "x-ms-client-request-id": [ "333dbdd6-1744-4299-bb86-c2201ad30417", "333dbdd6-1744-4299-bb86-c2201ad30417", "333dbdd6-1744-4299-bb86-c2201ad30417" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete", "Remove-AzMySqlServer_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -266,14 +259,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "73b9fac2-7cb5-4d08-849c-0d242267ca94" ], + "x-ms-request-id": [ "8b91628e-339e-49dd-a22b-3b9d4f7251d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], - "x-ms-correlation-request-id": [ "b9c6cbf7-cea3-4128-bdc2-72d6aa43d118" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112751Z:b9c6cbf7-cea3-4128-bdc2-72d6aa43d118" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "af3f285e-2b2b-438b-887c-76f98db7b3e3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063457Z:af3f285e-2b2b-438b-887c-76f98db7b3e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:27:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:34:57 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -288,13 +281,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysqldelete?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"createMode\": \"Default\",\n \"administratorLogin\": \"pwsh\",\n \"administratorLoginPassword\": \"Pa88word!\"\n },\n \"sku\": {\n \"name\": \"GP_Gen5_4\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "59fe4076-cf74-42d8-bdf8-565639eec428" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -306,38 +292,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/6d96cc6b-b5ac-4454-94ed-d1a41007b636?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/8185fd38-6088-4c65-8794-54b454afd13e?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d96cc6b-b5ac-4454-94ed-d1a41007b636?api-version=2017-12-01" ], - "x-ms-request-id": [ "6d96cc6b-b5ac-4454-94ed-d1a41007b636" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8185fd38-6088-4c65-8794-54b454afd13e?api-version=2017-12-01" ], + "x-ms-request-id": [ "8185fd38-6088-4c65-8794-54b454afd13e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-correlation-request-id": [ "ba40ff2d-982b-43cb-aebb-dbaaf9590ed6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112757Z:ba40ff2d-982b-43cb-aebb-dbaaf9590ed6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "29344297-7ce7-43a0-902b-875aa1ecfb4d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063504Z:29344297-7ce7-43a0-902b-875aa1ecfb4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:27:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:35:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-08T11:27:56.783Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-07-24T06:35:02.823Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d96cc6b-b5ac-4454-94ed-d1a41007b636?api-version=2017-12-01+2": { + "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8185fd38-6088-4c65-8794-54b454afd13e?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d96cc6b-b5ac-4454-94ed-d1a41007b636?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8185fd38-6088-4c65-8794-54b454afd13e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "162", "163" ], - "x-ms-client-request-id": [ "59fe4076-cf74-42d8-bdf8-565639eec428", "59fe4076-cf74-42d8-bdf8-565639eec428" ], + "x-ms-unique-id": [ "8", "9" ], + "x-ms-client-request-id": [ "c351c1fe-75b5-4bc8-a958-4e9d37e742db", "c351c1fe-75b5-4bc8-a958-4e9d37e742db" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -349,35 +335,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "b99d0941-becc-4c58-8e0b-d9e4e2d48728" ], + "x-ms-request-id": [ "d5ea7d90-2f85-4686-b574-b1d9c3ffecf4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], - "x-ms-correlation-request-id": [ "8b21b393-8478-4093-a94b-bab9a1ebd28a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112858Z:8b21b393-8478-4093-a94b-bab9a1ebd28a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "1c17f95d-9003-4c5c-b8b4-ccdda16e5af6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063605Z:1c17f95d-9003-4c5c-b8b4-ccdda16e5af6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:28:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:36:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"6d96cc6b-b5ac-4454-94ed-d1a41007b636\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:27:56.783Z\"}" + "Content": "{\"name\":\"8185fd38-6088-4c65-8794-54b454afd13e\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:35:02.823Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d96cc6b-b5ac-4454-94ed-d1a41007b636?api-version=2017-12-01+3": { + "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8185fd38-6088-4c65-8794-54b454afd13e?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/6d96cc6b-b5ac-4454-94ed-d1a41007b636?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8185fd38-6088-4c65-8794-54b454afd13e?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "162", "163", "164" ], - "x-ms-client-request-id": [ "59fe4076-cf74-42d8-bdf8-565639eec428", "59fe4076-cf74-42d8-bdf8-565639eec428", "59fe4076-cf74-42d8-bdf8-565639eec428" ], + "x-ms-unique-id": [ "8", "9", "10" ], + "x-ms-client-request-id": [ "c351c1fe-75b5-4bc8-a958-4e9d37e742db", "c351c1fe-75b5-4bc8-a958-4e9d37e742db", "c351c1fe-75b5-4bc8-a958-4e9d37e742db" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -389,21 +375,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "27b810aa-9bf2-4836-a6dc-dccb04c14676" ], + "x-ms-request-id": [ "a1c693a8-d66f-4a86-bfd6-297e2b1d4c8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], - "x-ms-correlation-request-id": [ "e2db54e8-2d97-4b8e-9afc-5321fc12db54" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T112959Z:e2db54e8-2d97-4b8e-9afc-5321fc12db54" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "8f21a533-016a-4003-8f0a-2499ba259263" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063706Z:8f21a533-016a-4003-8f0a-2499ba259263" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:29:59 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:37:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"6d96cc6b-b5ac-4454-94ed-d1a41007b636\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:27:56.783Z\"}" + "Content": "{\"name\":\"8185fd38-6088-4c65-8794-54b454afd13e\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:35:02.823Z\"}" } }, "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysqldelete?api-version=2017-12-01+4": { @@ -412,12 +398,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysqldelete?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "162", "163", "164", "165" ], - "x-ms-client-request-id": [ "59fe4076-cf74-42d8-bdf8-565639eec428", "59fe4076-cf74-42d8-bdf8-565639eec428", "59fe4076-cf74-42d8-bdf8-565639eec428", "59fe4076-cf74-42d8-bdf8-565639eec428" ], + "x-ms-unique-id": [ "8", "9", "10", "11" ], + "x-ms-client-request-id": [ "c351c1fe-75b5-4bc8-a958-4e9d37e742db", "c351c1fe-75b5-4bc8-a958-4e9d37e742db", "c351c1fe-75b5-4bc8-a958-4e9d37e742db", "c351c1fe-75b5-4bc8-a958-4e9d37e742db" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -428,21 +414,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "742ab58c-508a-46d5-97d6-060952c3a1d6" ], + "x-ms-request-id": [ "df99e724-c222-43ea-ab7b-0a1edc076cd0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], - "x-ms-correlation-request-id": [ "12a59e4e-7c12-457e-86c9-86ce59417225" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113000Z:12a59e4e-7c12-457e-86c9-86ce59417225" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "56d77769-018d-4d1b-b1c3-3585b15595b7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063706Z:56d77769-018d-4d1b-b1c3-3585b15595b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:37:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "889" ], + "Content-Length": [ "890" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysqldelete.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:37:57.11+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysqldelete\",\"name\":\"mysqldelete\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"pwsh\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysqldelete.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T06:45:03.153+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysqldelete\",\"name\":\"mysqldelete\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysqldelete?api-version=2017-12-01+5": { @@ -451,12 +437,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysqldelete?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "401a9b21-79fd-41d9-96df-ff1b44e5edab" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "c2a862ad-8bec-4eed-9d3f-adae77916fdc" ], "CommandName": [ "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -467,38 +453,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a17c1e73-17b4-4686-ab6e-cab62cb1cdd0?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ea807a1c-c746-461a-8f14-e6c67760a835?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a17c1e73-17b4-4686-ab6e-cab62cb1cdd0?api-version=2017-12-01" ], - "x-ms-request-id": [ "a17c1e73-17b4-4686-ab6e-cab62cb1cdd0" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ea807a1c-c746-461a-8f14-e6c67760a835?api-version=2017-12-01" ], + "x-ms-request-id": [ "ea807a1c-c746-461a-8f14-e6c67760a835" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], - "x-ms-correlation-request-id": [ "3a483b0b-b0fc-4c3c-a76e-514db207faad" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113001Z:3a483b0b-b0fc-4c3c-a76e-514db207faad" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "f3e07c64-0cd3-46e9-9e98-f0a3e8edc379" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063707Z:f3e07c64-0cd3-46e9-9e98-f0a3e8edc379" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:01 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:37:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "72" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-04-08T11:30:01.177Z\"}" + "Content": "{\"operation\":\"DropElasticServer\",\"startTime\":\"2020-07-24T06:37:07.093Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a17c1e73-17b4-4686-ab6e-cab62cb1cdd0?api-version=2017-12-01+6": { + "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ea807a1c-c746-461a-8f14-e6c67760a835?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a17c1e73-17b4-4686-ab6e-cab62cb1cdd0?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ea807a1c-c746-461a-8f14-e6c67760a835?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "166", "167" ], - "x-ms-client-request-id": [ "401a9b21-79fd-41d9-96df-ff1b44e5edab", "401a9b21-79fd-41d9-96df-ff1b44e5edab" ], + "x-ms-unique-id": [ "12", "13" ], + "x-ms-client-request-id": [ "c2a862ad-8bec-4eed-9d3f-adae77916fdc", "c2a862ad-8bec-4eed-9d3f-adae77916fdc" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_DeleteViaIdentity", "Remove-AzMySqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -510,35 +496,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "b63f0ace-dcb3-4341-83f5-5b50db030274" ], + "x-ms-request-id": [ "8ce245ee-3c94-4639-9d0a-27f845b47547" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], - "x-ms-correlation-request-id": [ "23d19d8f-6890-498c-9325-77696f2a26b1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113016Z:23d19d8f-6890-498c-9325-77696f2a26b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "a73d37fc-09ac-4b2b-8bfe-365beed77ef3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063722Z:a73d37fc-09ac-4b2b-8bfe-365beed77ef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:37:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"a17c1e73-17b4-4686-ab6e-cab62cb1cdd0\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:30:01.177Z\"}" + "Content": "{\"name\":\"ea807a1c-c746-461a-8f14-e6c67760a835\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:37:07.093Z\"}" } }, - "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a17c1e73-17b4-4686-ab6e-cab62cb1cdd0?api-version=2017-12-01+7": { + "Remove-AzMySqlServer+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ea807a1c-c746-461a-8f14-e6c67760a835?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a17c1e73-17b4-4686-ab6e-cab62cb1cdd0?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ea807a1c-c746-461a-8f14-e6c67760a835?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "166", "167", "168" ], - "x-ms-client-request-id": [ "401a9b21-79fd-41d9-96df-ff1b44e5edab", "401a9b21-79fd-41d9-96df-ff1b44e5edab", "401a9b21-79fd-41d9-96df-ff1b44e5edab" ], + "x-ms-unique-id": [ "12", "13", "14" ], + "x-ms-client-request-id": [ "c2a862ad-8bec-4eed-9d3f-adae77916fdc", "c2a862ad-8bec-4eed-9d3f-adae77916fdc", "c2a862ad-8bec-4eed-9d3f-adae77916fdc" ], "CommandName": [ "Remove-AzMySqlServer", "Remove-AzMySqlServer", "Remove-AzMySqlServer" ], "FullCommandName": [ "Remove-AzMySqlServer_DeleteViaIdentity", "Remove-AzMySqlServer_DeleteViaIdentity", "Remove-AzMySqlServer_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -549,14 +535,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5bf13035-b811-49d3-8b18-fe47a5f1ecec" ], + "x-ms-request-id": [ "9fe124c0-27c5-40c1-a8cb-178a0df00814" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], - "x-ms-correlation-request-id": [ "1e762f31-b8de-4d91-b50a-cf57b61efb53" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113017Z:1e762f31-b8de-4d91-b50a-cf57b61efb53" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "f89bd596-bedc-4004-9723-7a54bece52e6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063722Z:f89bd596-bedc-4004-9723-7a54bece52e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:37:21 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Remove-AzMySqlServer.Tests.ps1 b/src/MySql/test/Remove-AzMySqlServer.Tests.ps1 index 48f89bf6873c..9fbc0c981628 100644 --- a/src/MySql/test/Remove-AzMySqlServer.Tests.ps1 +++ b/src/MySql/test/Remove-AzMySqlServer.Tests.ps1 @@ -13,7 +13,7 @@ while(-not $mockingPath) { Describe 'Remove-AzMySqlServer' { It 'Delete' { - { + { #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] $password = 'Pa88word!' | ConvertTo-SecureString -AsPlainText -Force New-AzMySqlServer -Name $env.serverName2 -ResourceGroupName $env.resourceGroup -Location $env.location -AdministratorUserName pwsh -AdministratorLoginPassword $password -Sku $env.Sku @@ -23,7 +23,7 @@ Describe 'Remove-AzMySqlServer' { It 'DeleteViaIdentity' { { - #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] $password = 'Pa88word!' | ConvertTo-SecureString -AsPlainText -Force New-AzMySqlServer -Name mysqldelete -ResourceGroupName $env.resourceGroup -Location $env.location -AdministratorUserName pwsh -AdministratorLoginPassword $password -Sku $env.Sku $ID = "/subscriptions/$($env.SubscriptionId)/resourceGroups/$($env.resourceGroup)/providers/Microsoft.DBforMySQL/servers/mysqldelete" diff --git a/src/MySql/test/Remove-AzMySqlVirtualNetworkRule.Recording.json b/src/MySql/test/Remove-AzMySqlVirtualNetworkRule.Recording.json index 8e13a3615459..434ac7e9d010 100644 --- a/src/MySql/test/Remove-AzMySqlVirtualNetworkRule.Recording.json +++ b/src/MySql/test/Remove-AzMySqlVirtualNetworkRule.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "169" ], - "x-ms-client-request-id": [ "13365377-0d10-4880-84c1-152bd90a13b7" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/5841c701-275e-49ab-b812-05add0ac090d?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9e644f70-57e5-4b70-9db2-db45be70fdcd?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5841c701-275e-49ab-b812-05add0ac090d?api-version=2017-12-01" ], - "x-ms-request-id": [ "5841c701-275e-49ab-b812-05add0ac090d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9e644f70-57e5-4b70-9db2-db45be70fdcd?api-version=2017-12-01" ], + "x-ms-request-id": [ "9e644f70-57e5-4b70-9db2-db45be70fdcd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], - "x-ms-correlation-request-id": [ "789c8c30-ba30-4abb-8338-8ddd28f98406" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113019Z:789c8c30-ba30-4abb-8338-8ddd28f98406" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "03b6946f-9a36-4599-9e38-cd73f4e54c66" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063811Z:03b6946f-9a36-4599-9e38-cd73f4e54c66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:18 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:38:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:30:17.8Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:38:10.287Z\"}" } }, - "Remove-AzMySqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5841c701-275e-49ab-b812-05add0ac090d?api-version=2017-12-01+2": { + "Remove-AzMySqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9e644f70-57e5-4b70-9db2-db45be70fdcd?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/5841c701-275e-49ab-b812-05add0ac090d?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9e644f70-57e5-4b70-9db2-db45be70fdcd?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "169", "170" ], - "x-ms-client-request-id": [ "13365377-0d10-4880-84c1-152bd90a13b7", "13365377-0d10-4880-84c1-152bd90a13b7" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "e3bd6c47-27c6-4adb-aa8b-5f88439f4a32", "e3bd6c47-27c6-4adb-aa8b-5f88439f4a32" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "3c78b28c-ec84-467c-92c8-c18e2c5df01a" ], + "x-ms-request-id": [ "869c38b7-478f-400d-ba8b-2f7e70b41d33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], - "x-ms-correlation-request-id": [ "2ea84bb3-2c0c-440a-877b-5cb7eb6547b0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113049Z:2ea84bb3-2c0c-440a-877b-5cb7eb6547b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "95b33487-5758-4a10-b00e-2ddf97a5bf6f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063841Z:95b33487-5758-4a10-b00e-2ddf97a5bf6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:48 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:38:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "105" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"5841c701-275e-49ab-b812-05add0ac090d\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:30:17.8Z\"}" + "Content": "{\"name\":\"9e644f70-57e5-4b70-9db2-db45be70fdcd\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:38:10.287Z\"}" } }, "Remove-AzMySqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "169", "170", "171" ], - "x-ms-client-request-id": [ "13365377-0d10-4880-84c1-152bd90a13b7", "13365377-0d10-4880-84c1-152bd90a13b7", "13365377-0d10-4880-84c1-152bd90a13b7" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "e3bd6c47-27c6-4adb-aa8b-5f88439f4a32", "e3bd6c47-27c6-4adb-aa8b-5f88439f4a32", "e3bd6c47-27c6-4adb-aa8b-5f88439f4a32" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "59b2a941-27c1-45e2-90bd-ab92c4d8e382" ], + "x-ms-request-id": [ "d9bd50d2-38a4-4088-936f-9d55fc767315" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], - "x-ms-correlation-request-id": [ "c5ce11b2-dfa6-4dbc-9101-10fdc794f550" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113050Z:c5ce11b2-dfa6-4dbc-9101-10fdc794f550" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "00e06a46-2659-4b31-9fd7-4cd02b2472cf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063842Z:00e06a46-2659-4b31-9fd7-4cd02b2472cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:49 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:38:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -128,12 +121,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "83d7695a-cbd0-46ec-b3bc-35f1f98b9129" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "cc6af0c2-59bb-40a0-8556-aa3d8dd0220c" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,38 +137,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1dfdc392-429a-4e3b-a32d-9404262ab4ed?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/dda26a0e-016a-4868-8b3e-9835cfc00214?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1dfdc392-429a-4e3b-a32d-9404262ab4ed?api-version=2017-12-01" ], - "x-ms-request-id": [ "1dfdc392-429a-4e3b-a32d-9404262ab4ed" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dda26a0e-016a-4868-8b3e-9835cfc00214?api-version=2017-12-01" ], + "x-ms-request-id": [ "dda26a0e-016a-4868-8b3e-9835cfc00214" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14984" ], - "x-ms-correlation-request-id": [ "3feba2cf-097f-4dba-91fd-06699fedfcc8" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113051Z:3feba2cf-097f-4dba-91fd-06699fedfcc8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "8f076af5-bdd2-4aa7-b66d-ac8581615cb8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063843Z:8f076af5-bdd2-4aa7-b66d-ac8581615cb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:30:50 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:38:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "88" ], + "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:30:50.317Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:38:42.74Z\"}" } }, - "Remove-AzMySqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1dfdc392-429a-4e3b-a32d-9404262ab4ed?api-version=2017-12-01+5": { + "Remove-AzMySqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dda26a0e-016a-4868-8b3e-9835cfc00214?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1dfdc392-429a-4e3b-a32d-9404262ab4ed?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/dda26a0e-016a-4868-8b3e-9835cfc00214?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "172", "173" ], - "x-ms-client-request-id": [ "83d7695a-cbd0-46ec-b3bc-35f1f98b9129", "83d7695a-cbd0-46ec-b3bc-35f1f98b9129" ], + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "cc6af0c2-59bb-40a0-8556-aa3d8dd0220c", "cc6af0c2-59bb-40a0-8556-aa3d8dd0220c" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -187,35 +180,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "66de0e30-290b-4c4f-affb-c3c78b9c9f67" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], + "x-ms-request-id": [ "4bfc3a76-38f0-4c2b-8f85-2b98a3cc1243" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "1433445b-8c3f-47df-be66-af2021df7d70" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113107Z:1433445b-8c3f-47df-be66-af2021df7d70" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "be834f85-5311-47d6-9ef7-d04f2236f2c6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063859Z:be834f85-5311-47d6-9ef7-d04f2236f2c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:06 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:38:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"1dfdc392-429a-4e3b-a32d-9404262ab4ed\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:30:50.317Z\"}" + "Content": "{\"name\":\"dda26a0e-016a-4868-8b3e-9835cfc00214\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:38:42.74Z\"}" } }, - "Remove-AzMySqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1dfdc392-429a-4e3b-a32d-9404262ab4ed?api-version=2017-12-01+6": { + "Remove-AzMySqlVirtualNetworkRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/dda26a0e-016a-4868-8b3e-9835cfc00214?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1dfdc392-429a-4e3b-a32d-9404262ab4ed?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/dda26a0e-016a-4868-8b3e-9835cfc00214?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "172", "173", "174" ], - "x-ms-client-request-id": [ "83d7695a-cbd0-46ec-b3bc-35f1f98b9129", "83d7695a-cbd0-46ec-b3bc-35f1f98b9129", "83d7695a-cbd0-46ec-b3bc-35f1f98b9129" ], + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "cc6af0c2-59bb-40a0-8556-aa3d8dd0220c", "cc6af0c2-59bb-40a0-8556-aa3d8dd0220c", "cc6af0c2-59bb-40a0-8556-aa3d8dd0220c" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -226,14 +219,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "03ae401f-2031-4c81-99f5-70c93a8d2c95" ], + "x-ms-request-id": [ "1e4e7645-7631-414d-ae19-b09fb0e49ae8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], - "x-ms-correlation-request-id": [ "8b167e4a-9429-48bf-984f-6d1f0e1d010e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113107Z:8b167e4a-9429-48bf-984f-6d1f0e1d010e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "6872b24e-87b1-4b24-80b1-de5e700f7e52" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063859Z:6872b24e-87b1-4b24-80b1-de5e700f7e52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:07 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:38:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -248,13 +241,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "175" ], - "x-ms-client-request-id": [ "d74d1082-063e-40d8-9060-0495f18a5250" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -266,38 +252,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/0c16daa5-d8f3-4e61-93be-889613525684?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/008d17b6-eda7-4894-8595-97c3ab6fd9e5?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0c16daa5-d8f3-4e61-93be-889613525684?api-version=2017-12-01" ], - "x-ms-request-id": [ "0c16daa5-d8f3-4e61-93be-889613525684" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/008d17b6-eda7-4894-8595-97c3ab6fd9e5?api-version=2017-12-01" ], + "x-ms-request-id": [ "008d17b6-eda7-4894-8595-97c3ab6fd9e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-correlation-request-id": [ "8dbc0b96-7753-431e-90f0-d615828a02d3" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113109Z:8dbc0b96-7753-431e-90f0-d615828a02d3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "2042b9a8-a84f-44c9-85a7-c7018bc2ee15" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063901Z:2042b9a8-a84f-44c9-85a7-c7018bc2ee15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:09 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:39:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "89" ], + "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:31:08.34Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:39:00.223Z\"}" } }, - "Remove-AzMySqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0c16daa5-d8f3-4e61-93be-889613525684?api-version=2017-12-01+2": { + "Remove-AzMySqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/008d17b6-eda7-4894-8595-97c3ab6fd9e5?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/0c16daa5-d8f3-4e61-93be-889613525684?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/008d17b6-eda7-4894-8595-97c3ab6fd9e5?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "175", "176" ], - "x-ms-client-request-id": [ "d74d1082-063e-40d8-9060-0495f18a5250", "d74d1082-063e-40d8-9060-0495f18a5250" ], + "x-ms-unique-id": [ "7", "8" ], + "x-ms-client-request-id": [ "a1f89f2f-2655-4607-803c-a3930f00ba48", "a1f89f2f-2655-4607-803c-a3930f00ba48" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -309,21 +295,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "a5b3caa0-e133-4a16-8a17-4d85cee1278e" ], + "x-ms-request-id": [ "b57082c7-b59a-4599-a806-4f0a7e7b4f93" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], - "x-ms-correlation-request-id": [ "96d9a7a0-a1fe-41af-beaa-8b456922a727" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113140Z:96d9a7a0-a1fe-41af-beaa-8b456922a727" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "23577bf5-4b64-4d3f-b13b-f0ae6ceb41cb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063931Z:23577bf5-4b64-4d3f-b13b-f0ae6ceb41cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:39 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:39:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"0c16daa5-d8f3-4e61-93be-889613525684\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:31:08.34Z\"}" + "Content": "{\"name\":\"008d17b6-eda7-4894-8595-97c3ab6fd9e5\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:39:00.223Z\"}" } }, "Remove-AzMySqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -332,12 +318,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "175", "176", "177" ], - "x-ms-client-request-id": [ "d74d1082-063e-40d8-9060-0495f18a5250", "d74d1082-063e-40d8-9060-0495f18a5250", "d74d1082-063e-40d8-9060-0495f18a5250" ], + "x-ms-unique-id": [ "7", "8", "9" ], + "x-ms-client-request-id": [ "a1f89f2f-2655-4607-803c-a3930f00ba48", "a1f89f2f-2655-4607-803c-a3930f00ba48", "a1f89f2f-2655-4607-803c-a3930f00ba48" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -348,14 +334,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ad05e1be-7df1-44b2-8b15-01d85425486d" ], + "x-ms-request-id": [ "3c85fe68-1696-409b-9c94-6317855e0e31" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], - "x-ms-correlation-request-id": [ "74d28217-629e-4038-bf4d-4f0abf6a5ce0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113140Z:74d28217-629e-4038-bf4d-4f0abf6a5ce0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "84c66763-cd1e-4217-a7dc-32ac81f53d86" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063932Z:84c66763-cd1e-4217-a7dc-32ac81f53d86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:39 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:39:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -371,12 +357,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "178" ], - "x-ms-client-request-id": [ "02bb489c-9325-450a-b034-5c6391f042a6" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "ba48b114-c531-4a59-bedc-696859679589" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,38 +373,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fdfabff6-90e8-4671-8e23-3ea5813a1a94?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/117d3811-f4af-46ed-88aa-ba3d352811a9?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fdfabff6-90e8-4671-8e23-3ea5813a1a94?api-version=2017-12-01" ], - "x-ms-request-id": [ "fdfabff6-90e8-4671-8e23-3ea5813a1a94" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/117d3811-f4af-46ed-88aa-ba3d352811a9?api-version=2017-12-01" ], + "x-ms-request-id": [ "117d3811-f4af-46ed-88aa-ba3d352811a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14983" ], - "x-ms-correlation-request-id": [ "f9c7c228-ed2e-4309-9759-73d920b93eff" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113142Z:f9c7c228-ed2e-4309-9759-73d920b93eff" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "2d754328-51a6-477f-b93f-4679f082377d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063933Z:2d754328-51a6-477f-b93f-4679f082377d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:41 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:39:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:31:41.09Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T06:39:32.503Z\"}" } }, - "Remove-AzMySqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fdfabff6-90e8-4671-8e23-3ea5813a1a94?api-version=2017-12-01+5": { + "Remove-AzMySqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/117d3811-f4af-46ed-88aa-ba3d352811a9?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fdfabff6-90e8-4671-8e23-3ea5813a1a94?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/117d3811-f4af-46ed-88aa-ba3d352811a9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "178", "179" ], - "x-ms-client-request-id": [ "02bb489c-9325-450a-b034-5c6391f042a6", "02bb489c-9325-450a-b034-5c6391f042a6" ], + "x-ms-unique-id": [ "10", "11" ], + "x-ms-client-request-id": [ "ba48b114-c531-4a59-bedc-696859679589", "ba48b114-c531-4a59-bedc-696859679589" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_DeleteViaIdentity", "Remove-AzMySqlVirtualNetworkRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -430,35 +416,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "996fc819-02e0-4682-978a-a5c66423d9c1" ], + "x-ms-request-id": [ "9c8db95c-e585-4a87-becd-29916ecd6572" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], - "x-ms-correlation-request-id": [ "b39f9922-8412-4b45-8d8e-422ec7ee0a9e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113157Z:b39f9922-8412-4b45-8d8e-422ec7ee0a9e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "72714249-f8fb-4be8-b593-ad547b2a829a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063949Z:72714249-f8fb-4be8-b593-ad547b2a829a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:39:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"fdfabff6-90e8-4671-8e23-3ea5813a1a94\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:31:41.09Z\"}" + "Content": "{\"name\":\"117d3811-f4af-46ed-88aa-ba3d352811a9\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:39:32.503Z\"}" } }, - "Remove-AzMySqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fdfabff6-90e8-4671-8e23-3ea5813a1a94?api-version=2017-12-01+6": { + "Remove-AzMySqlVirtualNetworkRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/117d3811-f4af-46ed-88aa-ba3d352811a9?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fdfabff6-90e8-4671-8e23-3ea5813a1a94?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/117d3811-f4af-46ed-88aa-ba3d352811a9?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "178", "179", "180" ], - "x-ms-client-request-id": [ "02bb489c-9325-450a-b034-5c6391f042a6", "02bb489c-9325-450a-b034-5c6391f042a6", "02bb489c-9325-450a-b034-5c6391f042a6" ], + "x-ms-unique-id": [ "10", "11", "12" ], + "x-ms-client-request-id": [ "ba48b114-c531-4a59-bedc-696859679589", "ba48b114-c531-4a59-bedc-696859679589", "ba48b114-c531-4a59-bedc-696859679589" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_DeleteViaIdentity", "Remove-AzMySqlVirtualNetworkRule_DeleteViaIdentity", "Remove-AzMySqlVirtualNetworkRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -469,14 +455,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5e7ca486-4c7b-4f80-bf07-5e204a779284" ], + "x-ms-request-id": [ "e64bf63b-0116-422f-9241-b011e8c383b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], - "x-ms-correlation-request-id": [ "fe4cb5c0-182f-4ac1-9203-f3b28a1c06c2" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113158Z:fe4cb5c0-182f-4ac1-9203-f3b28a1c06c2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "3dfeba84-1890-4bbd-a571-6b88638b55ef" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T063949Z:3dfeba84-1890-4bbd-a571-6b88638b55ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:39:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Restart-AzMySqlServer.Recording.json b/src/MySql/test/Restart-AzMySqlServer.Recording.json index 33475c54ae57..a20eb3f8d9c8 100644 --- a/src/MySql/test/Restart-AzMySqlServer.Recording.json +++ b/src/MySql/test/Restart-AzMySqlServer.Recording.json @@ -5,12 +5,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/restart?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "181" ], - "x-ms-client-request-id": [ "caaac6a7-4f6f-40cd-9892-e1cf28e11571" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "71c2b788-0647-4d4b-8f86-38cf41a04e84" ], "CommandName": [ "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,38 +21,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01" ], - "x-ms-request-id": [ "bd28dd46-d314-4b31-af20-fea51c5f35fa" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01" ], + "x-ms-request-id": [ "2c5d06a0-f0c2-47db-8145-c596b0e722b6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "f61e2bf2-ca27-478c-9ef2-ee78e353982f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113158Z:f61e2bf2-ca27-478c-9ef2-ee78e353982f" ], + "x-ms-correlation-request-id": [ "2c705342-056f-4a01-ae78-84d40a60a90d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064218Z:2c705342-056f-4a01-ae78-84d40a60a90d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:31:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:42:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "75" ], + "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-04-08T11:31:58.793Z\"}" + "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-07-24T06:42:17.86Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01+2": { + "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "181", "182" ], - "x-ms-client-request-id": [ "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -64,35 +64,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "127ee23d-4b5f-4278-b5a2-b18e0867f81f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], + "x-ms-request-id": [ "13291af0-47bf-46ef-95be-eab4d8f09b46" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "a39ba7be-f762-450d-bf3e-26b3f44b7d48" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113214Z:a39ba7be-f762-450d-bf3e-26b3f44b7d48" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "9047b6a7-cbf5-4afb-be9a-6a9b9d3e79f6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064233Z:9047b6a7-cbf5-4afb-be9a-6a9b9d3e79f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:32:13 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:42:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"bd28dd46-d314-4b31-af20-fea51c5f35fa\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:31:58.793Z\"}" + "Content": "{\"name\":\"2c5d06a0-f0c2-47db-8145-c596b0e722b6\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:42:17.86Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01+3": { + "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "181", "182", "183" ], - "x-ms-client-request-id": [ "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,35 +104,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "d7e53fb7-da9a-40da-8e11-b476b6a730e5" ], + "x-ms-request-id": [ "6c73e2f3-79a9-48ea-96f0-edc2a7919784" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], - "x-ms-correlation-request-id": [ "fb69f7dc-8d9d-4f1b-a558-5a65101bc155" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113230Z:fb69f7dc-8d9d-4f1b-a558-5a65101bc155" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "e7532b0f-4dfb-4b57-bf6f-59c7ac28c85d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064248Z:e7532b0f-4dfb-4b57-bf6f-59c7ac28c85d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:32:29 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:42:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"bd28dd46-d314-4b31-af20-fea51c5f35fa\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:31:58.793Z\"}" + "Content": "{\"name\":\"2c5d06a0-f0c2-47db-8145-c596b0e722b6\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:42:17.86Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01+4": { + "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "181", "182", "183", "184" ], - "x-ms-client-request-id": [ "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571" ], + "x-ms-unique-id": [ "1", "2", "3", "4" ], + "x-ms-client-request-id": [ "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -144,35 +144,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "ee8eb50f-56d0-45c0-bdf1-c4629f7e5863" ], + "x-ms-request-id": [ "d1dfe3d5-0dc1-45b7-9002-d987129c9a7d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], - "x-ms-correlation-request-id": [ "41697954-4cdb-4ec9-a2d3-c0f1a41f99d0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113245Z:41697954-4cdb-4ec9-a2d3-c0f1a41f99d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "ec4519c3-1c39-4277-9796-b499065c9429" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064304Z:ec4519c3-1c39-4277-9796-b499065c9429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:32:44 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:43:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"bd28dd46-d314-4b31-af20-fea51c5f35fa\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:31:58.793Z\"}" + "Content": "{\"name\":\"2c5d06a0-f0c2-47db-8145-c596b0e722b6\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:42:17.86Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01+5": { + "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "181", "182", "183", "184", "185" ], - "x-ms-client-request-id": [ "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571" ], + "x-ms-unique-id": [ "1", "2", "3", "4", "5" ], + "x-ms-client-request-id": [ "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -184,35 +184,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "958a43ca-852d-41cb-a15d-91de9de74b59" ], + "x-ms-request-id": [ "940a03fe-18fd-4fd0-bae0-668c0d6840f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], - "x-ms-correlation-request-id": [ "3e040c19-8111-4bb0-9de1-5db5e292a738" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113301Z:3e040c19-8111-4bb0-9de1-5db5e292a738" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "592e4f19-35c7-4be1-a03e-b3a5c7d52c65" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064319Z:592e4f19-35c7-4be1-a03e-b3a5c7d52c65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:33:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:43:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"bd28dd46-d314-4b31-af20-fea51c5f35fa\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:31:58.793Z\"}" + "Content": "{\"name\":\"2c5d06a0-f0c2-47db-8145-c596b0e722b6\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:42:17.86Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01+6": { + "Restart-AzMySqlServer+[NoContext]+Restart+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/bd28dd46-d314-4b31-af20-fea51c5f35fa?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/2c5d06a0-f0c2-47db-8145-c596b0e722b6?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "181", "182", "183", "184", "185", "186" ], - "x-ms-client-request-id": [ "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571", "caaac6a7-4f6f-40cd-9892-e1cf28e11571" ], + "x-ms-unique-id": [ "1", "2", "3", "4", "5", "6" ], + "x-ms-client-request-id": [ "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84", "71c2b788-0647-4d4b-8f86-38cf41a04e84" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart", "Restart-AzMySqlServer_Restart" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -223,14 +223,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b7f555fa-118e-473c-b025-f1a28336cc6f" ], + "x-ms-request-id": [ "3e87c5ba-bea4-4e8f-b136-646faf330339" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], - "x-ms-correlation-request-id": [ "478c70b0-2fa8-4dc7-8528-465c3600a170" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113301Z:478c70b0-2fa8-4dc7-8528-465c3600a170" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], + "x-ms-correlation-request-id": [ "d2068349-544b-4a87-8e82-2fd2628823ce" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064319Z:d2068349-544b-4a87-8e82-2fd2628823ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:33:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:43:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -245,12 +245,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/restart?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "187" ], - "x-ms-client-request-id": [ "76b23888-751b-4263-868c-33f8c8dce91d" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "0bcff115-6341-49c6-9548-0f4e307a824f" ], "CommandName": [ "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -261,38 +261,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01" ], - "x-ms-request-id": [ "098a69c2-5fdf-4828-b523-946f7bb18fb2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01" ], + "x-ms-request-id": [ "62df6539-87c0-4278-9d9e-6f874380b40d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "c67b3ce2-fde0-44e0-b707-a4e5b0aa2fbf" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113301Z:c67b3ce2-fde0-44e0-b707-a4e5b0aa2fbf" ], + "x-ms-correlation-request-id": [ "ca420300-952f-414b-be96-f17a70544d50" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064320Z:ca420300-952f-414b-be96-f17a70544d50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:33:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:43:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-04-08T11:33:01.687Z\"}" + "Content": "{\"operation\":\"RestartElasticServer\",\"startTime\":\"2020-07-24T06:43:20.203Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01+2": { + "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "187", "188" ], - "x-ms-client-request-id": [ "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d" ], + "x-ms-unique-id": [ "7", "8" ], + "x-ms-client-request-id": [ "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -304,35 +304,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "8309d88b-4516-4da3-8f1a-6ceb684d6256" ], + "x-ms-request-id": [ "7ded85c5-4503-436b-82e4-e1ea448f2903" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], - "x-ms-correlation-request-id": [ "32ede089-df4e-45ad-960f-b7022e840759" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113317Z:32ede089-df4e-45ad-960f-b7022e840759" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "1817b5bf-57a9-4ef8-a809-152a8d94eeff" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064335Z:1817b5bf-57a9-4ef8-a809-152a8d94eeff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:33:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:43:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"098a69c2-5fdf-4828-b523-946f7bb18fb2\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:33:01.687Z\"}" + "Content": "{\"name\":\"62df6539-87c0-4278-9d9e-6f874380b40d\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:43:20.203Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01+3": { + "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "187", "188", "189" ], - "x-ms-client-request-id": [ "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d" ], + "x-ms-unique-id": [ "7", "8", "9" ], + "x-ms-client-request-id": [ "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -344,35 +344,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "9e2178ec-1f88-490b-af08-b06b7106e2d6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], + "x-ms-request-id": [ "718f8161-da3a-4691-8195-d7dbbe30a8c8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "8fc07a93-8a0a-46ca-a2a6-460bc4272f0b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113332Z:8fc07a93-8a0a-46ca-a2a6-460bc4272f0b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "dd2b8e28-b2d5-4968-9b91-ed384329ff8b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064351Z:dd2b8e28-b2d5-4968-9b91-ed384329ff8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:33:32 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:43:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"098a69c2-5fdf-4828-b523-946f7bb18fb2\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:33:01.687Z\"}" + "Content": "{\"name\":\"62df6539-87c0-4278-9d9e-6f874380b40d\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:43:20.203Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01+4": { + "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "187", "188", "189", "190" ], - "x-ms-client-request-id": [ "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d" ], + "x-ms-unique-id": [ "7", "8", "9", "10" ], + "x-ms-client-request-id": [ "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -384,35 +384,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "c3bf5ba7-35c2-4eb1-96a6-6d1a6d99feda" ], + "x-ms-request-id": [ "5709d4ab-37dc-4620-9dbe-ea57b0dff922" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], - "x-ms-correlation-request-id": [ "ae51add6-3afa-4c2f-89f8-b088d47d1d57" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113348Z:ae51add6-3afa-4c2f-89f8-b088d47d1d57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "bb498ce1-f241-4e77-8f7d-b4986762297b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064406Z:bb498ce1-f241-4e77-8f7d-b4986762297b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:33:48 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:44:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"098a69c2-5fdf-4828-b523-946f7bb18fb2\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:33:01.687Z\"}" + "Content": "{\"name\":\"62df6539-87c0-4278-9d9e-6f874380b40d\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T06:43:20.203Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01+5": { + "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "187", "188", "189", "190", "191" ], - "x-ms-client-request-id": [ "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d" ], + "x-ms-unique-id": [ "7", "8", "9", "10", "11" ], + "x-ms-client-request-id": [ "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -424,35 +424,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "fef0c9a1-982b-4fa0-acfa-e962c8c2506f" ], + "x-ms-request-id": [ "429ca123-d8de-42d2-acd7-6fba9d6e246f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], - "x-ms-correlation-request-id": [ "d44e97fc-1819-4886-9a37-fea80e35da4a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113404Z:d44e97fc-1819-4886-9a37-fea80e35da4a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "36176754-0a79-4251-bb07-efee9fe539e6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064421Z:36176754-0a79-4251-bb07-efee9fe539e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:34:03 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:44:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"098a69c2-5fdf-4828-b523-946f7bb18fb2\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:33:01.687Z\"}" + "Content": "{\"name\":\"62df6539-87c0-4278-9d9e-6f874380b40d\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T06:43:20.203Z\"}" } }, - "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01+6": { + "Restart-AzMySqlServer+[NoContext]+RestartViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/098a69c2-5fdf-4828-b523-946f7bb18fb2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/62df6539-87c0-4278-9d9e-6f874380b40d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "187", "188", "189", "190", "191", "192" ], - "x-ms-client-request-id": [ "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d", "76b23888-751b-4263-868c-33f8c8dce91d" ], + "x-ms-unique-id": [ "7", "8", "9", "10", "11", "12" ], + "x-ms-client-request-id": [ "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f", "0bcff115-6341-49c6-9548-0f4e307a824f" ], "CommandName": [ "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer", "Restart-AzMySqlServer" ], "FullCommandName": [ "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity", "Restart-AzMySqlServer_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -463,14 +463,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d8835775-8746-47af-955b-e1ffe9c17253" ], + "x-ms-request-id": [ "b2b33128-f2e2-4dfa-a90a-8e2214154084" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11846" ], - "x-ms-correlation-request-id": [ "8b05e690-da2f-4111-ae33-7af8a6c2bdb9" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113404Z:8b05e690-da2f-4111-ae33-7af8a6c2bdb9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "c7153538-ea5c-4bd2-b074-f36274e9e515" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T064422Z:c7153538-ea5c-4bd2-b074-f36274e9e515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:34:03 GMT" ] + "Date": [ "Fri, 24 Jul 2020 06:44:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Restore-AzMySqlServer.Recording.json b/src/MySql/test/Restore-AzMySqlServer.Recording.json index de1ee69aa843..050eb2b91972 100644 --- a/src/MySql/test/Restore-AzMySqlServer.Recording.json +++ b/src/MySql/test/Restore-AzMySqlServer.Recording.json @@ -5,12 +5,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "f1e1d9ab-db07-49bc-9538-075d52cbe2be" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "925ee192-36d9-44e6-9d60-3a7653eb382a" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,21 +21,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f29f7596-cf28-40b8-b81d-5d3c2cfe7eca" ], + "x-ms-request-id": [ "3c6b5020-e8c9-4da4-8f9f-25e9016ae192" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11845" ], - "x-ms-correlation-request-id": [ "9f27f380-f21a-48b0-8b7d-3d43547f2aab" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113406Z:9f27f380-f21a-48b0-8b7d-3d43547f2aab" ], + "x-ms-correlation-request-id": [ "1fd3d2d8-4093-4ed0-bf97-e68a9cf56042" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T081714Z:1fd3d2d8-4093-4ed0-bf97-e68a9cf56042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:34:05 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:17:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "905" ], + "Content-Length": [ "907" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Restore-AzMySqlServer+[NoContext]+GeoRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+2": { @@ -44,13 +44,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"createMode\": \"Replica\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "194" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -62,38 +55,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01" ], - "x-ms-request-id": [ "7bbbf0d8-037a-4f88-b623-693c6711d367" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01" ], + "x-ms-request-id": [ "d2e05dac-052c-4b23-a050-142294b6ed7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], - "x-ms-correlation-request-id": [ "83ef4050-3391-4bb4-85c8-8df6803944ea" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113411Z:83ef4050-3391-4bb4-85c8-8df6803944ea" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "8c1870b5-1c2f-4501-8850-eceeb942ee34" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T081720Z:8c1870b5-1c2f-4501-8850-eceeb942ee34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:34:10 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:17:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"operation\":\"CreateElasticServerContinuousCopy\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+3": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,35 +98,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "731cfa5e-ea47-49ac-b54f-166020127d93" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11844" ], + "x-ms-request-id": [ "8af57d85-2e5c-4b6f-823e-6686cce4bca3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b152cb8d-595d-48d7-8ca6-6554b23ce7fc" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113443Z:b152cb8d-595d-48d7-8ca6-6554b23ce7fc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "4c25a92f-7672-4bfa-bf00-787a30993cce" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T081750Z:4c25a92f-7672-4bfa-bf00-787a30993cce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:34:42 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:17:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+4": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -145,35 +138,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "eaed6896-0c6e-49dd-b967-dbc2d08aff4c" ], + "x-ms-request-id": [ "ea94b5f2-3820-49a6-b319-5d41aa22b52e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11843" ], - "x-ms-correlation-request-id": [ "75415ed5-e1b4-44c7-a4d1-a6a5ca7decf6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113514Z:75415ed5-e1b4-44c7-a4d1-a6a5ca7decf6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "40aab22d-6469-439d-b786-03d8b8e33870" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T081821Z:40aab22d-6469-439d-b786-03d8b8e33870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:35:13 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:18:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+5": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -185,35 +178,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "8f100535-c081-4abb-b09f-ee2de8f2e508" ], + "x-ms-request-id": [ "77fff233-5119-483d-a86b-78ab93110729" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11842" ], - "x-ms-correlation-request-id": [ "38d55238-1963-4ee6-93eb-f467aa30cdc6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113544Z:38d55238-1963-4ee6-93eb-f467aa30cdc6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "4945677f-66aa-4610-a0f3-6b1a0d2be2e7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T081851Z:4945677f-66aa-4610-a0f3-6b1a0d2be2e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:35:44 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:18:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+6": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -225,35 +218,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "94542804-73f6-48a9-ad2e-1392d5690901" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11841" ], + "x-ms-request-id": [ "01050dce-8726-47ba-a5e2-72430ee1a01f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "c5db7162-cac7-4787-8a34-57f97d88f6a0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113614Z:c5db7162-cac7-4787-8a34-57f97d88f6a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "d6c0f84e-0378-416d-a351-72c7d21901c0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T081921Z:d6c0f84e-0378-416d-a351-72c7d21901c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:36:14 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:19:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+7": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -265,35 +258,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "e1b1ec89-4d60-4e8d-a63f-bbd7afd9318c" ], + "x-ms-request-id": [ "a0e1ba89-369f-46aa-a49c-89359541ca13" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11840" ], - "x-ms-correlation-request-id": [ "31c86e21-df8b-4d22-a61b-9aba8b847094" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113645Z:31c86e21-df8b-4d22-a61b-9aba8b847094" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "419b309d-57d6-450f-9558-3e2b4af4a285" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T081952Z:419b309d-57d6-450f-9558-3e2b4af4a285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:36:45 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:19:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+8": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -305,35 +298,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "0ca44932-9192-4090-b201-c7467bb720b8" ], + "x-ms-request-id": [ "6da823e1-1a62-4b0e-8910-5d289969596a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11839" ], - "x-ms-correlation-request-id": [ "76f10f52-52d2-49ee-8843-0f82c42179b1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113716Z:76f10f52-52d2-49ee-8843-0f82c42179b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "42c80981-bae3-4607-944a-965a635fb00e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082022Z:42c80981-bae3-4607-944a-965a635fb00e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:37:15 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:20:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+9": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -345,35 +338,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "d6e611f3-883b-49e6-890e-cfb692c90eef" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11838" ], + "x-ms-request-id": [ "d2928fc4-49d4-487d-aef3-e9c4dd1597ea" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "036fa2e5-7b3d-47dc-82ce-40ade8071a5f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113746Z:036fa2e5-7b3d-47dc-82ce-40ade8071a5f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "91c8014f-a771-42c0-b89f-5af346010e0f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082053Z:91c8014f-a771-42c0-b89f-5af346010e0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:37:46 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:20:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+10": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -385,35 +378,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "c0a01e73-9c8d-45a6-be0c-d116c462df53" ], + "x-ms-request-id": [ "5156a74e-0331-4ef7-a7e6-db38221dee03" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], - "x-ms-correlation-request-id": [ "524215a9-ce9b-4740-bb73-6348696b7185" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113817Z:524215a9-ce9b-4740-bb73-6348696b7185" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "ea3b1c96-e914-4155-bda2-4f410016adcc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082123Z:ea3b1c96-e914-4155-bda2-4f410016adcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:38:17 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:21:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+11": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -425,35 +418,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "1744069f-8aba-4b84-88df-d1aa9bc1eeb1" ], + "x-ms-request-id": [ "20463bb0-d111-4136-bb08-eae1807ce62a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], - "x-ms-correlation-request-id": [ "34b2346a-873f-4b43-8364-14e7460bc1ed" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113848Z:34b2346a-873f-4b43-8364-14e7460bc1ed" ], + "x-ms-correlation-request-id": [ "1adceb73-a774-4c5d-8bbd-cd6d45629703" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082153Z:1adceb73-a774-4c5d-8bbd-cd6d45629703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:38:48 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:21:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+12": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -465,35 +458,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "6d208f78-e99d-40be-8999-63de15757ebd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], + "x-ms-request-id": [ "b2786085-9d3c-4768-8758-ffedb703932a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "c923789f-ee89-4a74-b0da-6b5514498b83" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113918Z:c923789f-ee89-4a74-b0da-6b5514498b83" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "a0581a55-1ac3-47f7-b5dd-420f2f9dcc53" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082228Z:a0581a55-1ac3-47f7-b5dd-420f2f9dcc53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:39:18 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:22:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+13": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -505,35 +498,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "32b83591-69d5-4119-9ccc-80c6a9172e89" ], + "x-ms-request-id": [ "4a33b717-f042-4552-95ca-2d5f90f298cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], - "x-ms-correlation-request-id": [ "9e49b5b7-e8bc-474a-9da2-6d70bbe0838c" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T113949Z:9e49b5b7-e8bc-474a-9da2-6d70bbe0838c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "2512e601-c50f-4e05-9f9a-71265b26c67c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082258Z:2512e601-c50f-4e05-9f9a-71265b26c67c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:39:49 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:22:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+14": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -545,35 +538,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "d3e72904-5939-4473-9b9d-8aa2647f0100" ], + "x-ms-request-id": [ "9d0be052-92b8-4b7c-a0f9-7fe9237416ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], - "x-ms-correlation-request-id": [ "1b537393-2ae0-4de4-9dc5-be704957c7ef" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114020Z:1b537393-2ae0-4de4-9dc5-be704957c7ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "fc21755b-0e6a-481a-9546-d0a7f0fe4a0f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082328Z:fc21755b-0e6a-481a-9546-d0a7f0fe4a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:40:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:23:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+15": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -585,35 +578,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "60eb2b02-fca8-490e-a914-5d8fb5bc64ba" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], + "x-ms-request-id": [ "1a4e38ff-89e8-4a71-b716-a9bfac45a46a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "d36ce3c8-3d35-462b-b15c-9923ae9e615c" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114050Z:d36ce3c8-3d35-462b-b15c-9923ae9e615c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "255fbb66-9441-41b9-b3a3-f7ad288f7c56" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082359Z:255fbb66-9441-41b9-b3a3-f7ad288f7c56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:40:50 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:23:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+16": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -625,35 +618,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "124b168e-8717-4231-aef4-9a7b1db0b232" ], + "x-ms-request-id": [ "584658d3-74c9-42d8-8295-3128e140ee5a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], - "x-ms-correlation-request-id": [ "b1c51544-8790-42e9-abcb-3bc325ce015a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114121Z:b1c51544-8790-42e9-abcb-3bc325ce015a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "f1e36bb7-107e-4d0f-bb4e-f32f2d6716df" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082429Z:f1e36bb7-107e-4d0f-bb4e-f32f2d6716df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:41:21 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:24:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+17": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -665,35 +658,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "8592de56-c0a1-4a10-942f-be276d12fb4b" ], + "x-ms-request-id": [ "b12e6d9b-7a50-4cd5-a548-e448df0acf92" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], - "x-ms-correlation-request-id": [ "bb85c77a-48c8-4b54-8865-66655b49273e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114152Z:bb85c77a-48c8-4b54-8865-66655b49273e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "a2cfa9d1-6dd4-4d22-a007-3df98c31c822" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082500Z:a2cfa9d1-6dd4-4d22-a007-3df98c31c822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:41:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:24:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+18": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -705,35 +698,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "f0e07cc8-956e-4c5b-9b64-f43defcdfc53" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], + "x-ms-request-id": [ "19a2844d-4775-4ea8-a147-2e61ed9dc049" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "ffde1620-302a-48ae-98de-ffeeb97b67c6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114222Z:ffde1620-302a-48ae-98de-ffeeb97b67c6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], + "x-ms-correlation-request-id": [ "bbd770ae-7c65-420a-89ef-6f599f0b2d8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082530Z:bbd770ae-7c65-420a-89ef-6f599f0b2d8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:42:22 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:25:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+19": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210", "211" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -745,35 +738,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "a40a94b4-5561-45e2-aa23-26e4dda92853" ], + "x-ms-request-id": [ "6ac2891e-b89d-4efd-8bea-3297775734be" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], - "x-ms-correlation-request-id": [ "32e13d38-9234-4833-9946-36ceb783a695" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114253Z:32e13d38-9234-4833-9946-36ceb783a695" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "x-ms-correlation-request-id": [ "e43c7853-75e6-4f6c-9234-03c7dec348dc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082600Z:e43c7853-75e6-4f6c-9234-03c7dec348dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:42:52 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+20": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d2e05dac-052c-4b23-a050-142294b6ed7a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210", "211", "212" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -785,35 +778,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "44279990-83cf-493a-a158-5cf7cb3b36e7" ], + "x-ms-request-id": [ "555b5f33-7d37-49ef-b315-a2070446f5f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], - "x-ms-correlation-request-id": [ "29941477-172c-49f5-aa00-8ab9f1417b29" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114324Z:29941477-172c-49f5-aa00-8ab9f1417b29" ], + "x-ms-correlation-request-id": [ "2931cf7b-9018-41f9-a4f7-c14092b67d64" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082631Z:2931cf7b-9018-41f9-a4f7-c14092b67d64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:43:23 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "108" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"name\":\"d2e05dac-052c-4b23-a050-142294b6ed7a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T08:17:20.127Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01+21": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/7bbbf0d8-037a-4f88-b623-693c6711d367?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210", "211", "212", "213" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], + "x-ms-unique-id": [ "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21" ], + "x-ms-client-request-id": [ "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01", "716db609-9d12-4095-9e34-96106d43cd01" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -824,76 +817,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "30" ], - "x-ms-request-id": [ "4b661a11-3eb6-40c7-a231-e134ad53ee12" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], + "x-ms-request-id": [ "8f5ec41d-cf09-427b-b286-a0e3eb951440" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "45c8ffb7-54c8-4e33-a9c0-0e8069001fc9" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114354Z:45c8ffb7-54c8-4e33-a9c0-0e8069001fc9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], + "x-ms-correlation-request-id": [ "41517ba8-950a-4ad2-a177-59d3d12eb401" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082632Z:41517ba8-950a-4ad2-a177-59d3d12eb401" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:43:54 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "1063" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"7bbbf0d8-037a-4f88-b623-693c6711d367\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:34:11.673Z\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T08:28:33.737+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01+22": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica?api-version=2017-12-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214" ], - "x-ms-client-request-id": [ "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da", "2f07b14a-4bfa-44b0-bdd6-5887ef95a2da" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ffd55612-d17a-42a9-ae75-2f211ce35a87" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], - "x-ms-correlation-request-id": [ "c7888f4a-32c4-4dc8-8a93-9644440fb2d1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114355Z:c7888f4a-32c4-4dc8-8a93-9644440fb2d1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:43:55 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1060" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-replica.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:46:14.72+00:00\",\"replicationRole\":\"Replica\",\"masterServerId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"replicaCapacity\":0,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\",\"name\":\"mysql-test-100-replica\",\"type\":\"Microsoft.DBforMySQL/servers\"}" - } - }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+23": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+22": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"createMode\": \"GeoRestore\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-replica\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "215" ], - "x-ms-client-request-id": [ "77a3f012-62bf-4622-86a9-bd1bd357457e" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -905,38 +851,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ae15e278-35f0-4f9d-9b72-c7180a602749?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/169f1d2f-3665-498c-b4a8-5bdef0b59066?api-version=2017-12-01" ], "Retry-After": [ "10" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae15e278-35f0-4f9d-9b72-c7180a602749?api-version=2017-12-01" ], - "x-ms-request-id": [ "ae15e278-35f0-4f9d-9b72-c7180a602749" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/169f1d2f-3665-498c-b4a8-5bdef0b59066?api-version=2017-12-01" ], + "x-ms-request-id": [ "169f1d2f-3665-498c-b4a8-5bdef0b59066" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], - "x-ms-correlation-request-id": [ "2667b997-059e-47a8-8712-0c50a1f58b68" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114358Z:2667b997-059e-47a8-8712-0c50a1f58b68" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "17ae7918-c1d0-4519-98d8-da2ac1ce9598" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082634Z:17ae7918-c1d0-4519-98d8-da2ac1ce9598" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:43:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "74" ], + "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-04-08T11:43:57.97Z\"}" + "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-07-24T08:26:33.757Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae15e278-35f0-4f9d-9b72-c7180a602749?api-version=2017-12-01+24": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/169f1d2f-3665-498c-b4a8-5bdef0b59066?api-version=2017-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae15e278-35f0-4f9d-9b72-c7180a602749?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/169f1d2f-3665-498c-b4a8-5bdef0b59066?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "215", "216" ], - "x-ms-client-request-id": [ "77a3f012-62bf-4622-86a9-bd1bd357457e", "77a3f012-62bf-4622-86a9-bd1bd357457e" ], + "x-ms-unique-id": [ "22", "23" ], + "x-ms-client-request-id": [ "0d6e50e9-885a-4489-bf7e-9b84a9e44a69", "0d6e50e9-885a-4489-bf7e-9b84a9e44a69" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -948,35 +894,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "22ec982a-3bd5-4a28-a470-5407a5f5205e" ], + "x-ms-request-id": [ "1503eb09-b1a4-433e-8dc0-c98f402e14ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], - "x-ms-correlation-request-id": [ "293a8383-b307-41fd-8c2e-2f41179a0c51" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114408Z:293a8383-b307-41fd-8c2e-2f41179a0c51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], + "x-ms-correlation-request-id": [ "2ede30ba-012d-4d26-8004-64d4c0c84f8e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082644Z:2ede30ba-012d-4d26-8004-64d4c0c84f8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "267" ], + "Content-Length": [ "268" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ae15e278-35f0-4f9d-9b72-c7180a602749\",\"status\":\"Failed\",\"startTime\":\"2020-04-08T11:43:57.97Z\",\"error\":{\"code\":\"SubscriptionDoesNotHaveServer\",\"message\":\"Subscription \u00279e223dbe-3399-4e19-88eb-0975f02ac87f\u0027 does not have the server \u0027mysql-test-100-replica\u0027.\"}}" + "Content": "{\"name\":\"169f1d2f-3665-498c-b4a8-5bdef0b59066\",\"status\":\"Failed\",\"startTime\":\"2020-07-24T08:26:33.757Z\",\"error\":{\"code\":\"SubscriptionDoesNotHaveServer\",\"message\":\"Subscription \u00279e223dbe-3399-4e19-88eb-0975f02ac87f\u0027 does not have the server \u0027mysql-test-100-replica\u0027.\"}}" } }, - "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+25": { + "Restore-AzMySqlServer+[NoContext]+GeoRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+24": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "215", "216", "217" ], - "x-ms-client-request-id": [ "77a3f012-62bf-4622-86a9-bd1bd357457e", "77a3f012-62bf-4622-86a9-bd1bd357457e", "77a3f012-62bf-4622-86a9-bd1bd357457e" ], + "x-ms-unique-id": [ "22", "23", "24" ], + "x-ms-client-request-id": [ "0d6e50e9-885a-4489-bf7e-9b84a9e44a69", "0d6e50e9-885a-4489-bf7e-9b84a9e44a69", "0d6e50e9-885a-4489-bf7e-9b84a9e44a69" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -987,21 +933,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e18ccd18-2498-4946-9fe5-f9c8de201fc8" ], + "x-ms-request-id": [ "9df14527-44be-4ca6-8672-9027c55618eb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], - "x-ms-correlation-request-id": [ "75db026e-140a-4403-8769-6d6bc32bd160" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114408Z:75db026e-140a-4403-8769-6d6bc32bd160" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], + "x-ms-correlation-request-id": [ "22eac633-df65-4452-964e-5c417a91ecd7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082644Z:22eac633-df65-4452-964e-5c417a91ecd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "907" ], + "Content-Length": [ "909" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { @@ -1010,12 +956,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "68dca55e-7ada-4e24-8f19-0e3455e0c95c" ], + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "3b2f79d7-ec9b-4cad-8bcd-c79c8791174e" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1026,36 +972,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b45b9253-f180-4bea-899f-ba5d9ddceaa8" ], + "x-ms-request-id": [ "ab4f4393-ad37-422a-b952-da8844e6706f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], - "x-ms-correlation-request-id": [ "3303ac78-0da3-45be-b46a-c3d8731d3f90" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114409Z:3303ac78-0da3-45be-b46a-c3d8731d3f90" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-correlation-request-id": [ "73395c4c-8621-4cc1-a998-18c3ee67884b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082645Z:73395c4c-8621-4cc1-a998-18c3ee67884b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "907" ], + "Content-Length": [ "909" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2?api-version=2017-12-01+2": { "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"createMode\": \"PointInTimeRestore\",\n \"restorePointInTime\": \"2020-04-08T11:34:09.0349617+00:00\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\"\n },\n \"location\": \"eastus\"\n}", + "Content": "{\n \"properties\": {\n \"createMode\": \"PointInTimeRestore\",\n \"restorePointInTime\": \"2020-07-24T08:16:43.7672952+00:00\",\n \"sourceServerId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\"\n },\n \"location\": \"eastus\"\n}", "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3" ], - "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer" ], - "FullCommandName": [ "New-AzMySqlServer_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -1067,38 +1006,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01" ], "Retry-After": [ "10" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01" ], - "x-ms-request-id": [ "4e7b3597-736a-4e44-8bce-9f0bcf69fc04" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01" ], + "x-ms-request-id": [ "9d76273c-1381-4238-9c08-650cf41d34b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], - "x-ms-correlation-request-id": [ "16dac19e-4350-4535-8473-ca2aafbf2ee3" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114414Z:16dac19e-4350-4535-8473-ca2aafbf2ee3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "45b09785-959c-48a1-961b-eeba01a5f2dc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082651Z:45b09785-959c-48a1-961b-eeba01a5f2dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:13 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:26:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "74" ], + "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"operation\":\"RestoreElasticServer\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+3": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1110,35 +1049,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "35604690-973f-4684-a75f-1066bfc24893" ], + "x-ms-request-id": [ "0af589d6-ec01-4106-a374-e1d7764572fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], - "x-ms-correlation-request-id": [ "156cab8a-2099-44c0-bf48-d517d6067497" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114424Z:156cab8a-2099-44c0-bf48-d517d6067497" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-correlation-request-id": [ "b3a8e898-3fa6-43cd-9d43-d4ea416dea28" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082701Z:b3a8e898-3fa6-43cd-9d43-d4ea416dea28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:27:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+4": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1150,35 +1089,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "a957f9da-ee35-412b-97a3-5be5ef5fc482" ], + "x-ms-request-id": [ "a87ff73d-322a-4dbc-bca7-1a731f7d7612" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], - "x-ms-correlation-request-id": [ "52521463-69fc-46f4-9af3-fdb1d51ca563" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114435Z:52521463-69fc-46f4-9af3-fdb1d51ca563" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-correlation-request-id": [ "5832293a-e6e9-4d8c-a40b-1929f6a9cf02" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082713Z:5832293a-e6e9-4d8c-a40b-1929f6a9cf02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:34 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:27:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+5": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "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": { @@ -1190,35 +1129,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "8f8bd2c8-9b54-4fe5-aea7-fe8265aaf7b0" ], + "x-ms-request-id": [ "30e83978-be91-43f2-814c-27da456706b1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], - "x-ms-correlation-request-id": [ "fa5a2463-4373-4cf2-879d-c54f3c29001e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114445Z:fa5a2463-4373-4cf2-879d-c54f3c29001e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-correlation-request-id": [ "94e7e56f-f818-4aa8-a35d-8115e4bc89dc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082723Z:94e7e56f-f818-4aa8-a35d-8115e4bc89dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:45 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:27:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+6": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1230,35 +1169,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "7503d94b-aae9-482a-ae1c-9e589a39fb2b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], + "x-ms-request-id": [ "6450f882-f2a5-4329-888e-ccc3d54e0067" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b3266670-5861-4967-8a21-7c1b5655f596" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114455Z:b3266670-5861-4967-8a21-7c1b5655f596" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-correlation-request-id": [ "c12cb1e2-d309-4f8b-a74a-f456036afb21" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082733Z:c12cb1e2-d309-4f8b-a74a-f456036afb21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:44:55 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:27:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+7": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1270,35 +1209,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "6c45f340-9482-4c00-a1a7-c1dbecc24e76" ], + "x-ms-request-id": [ "645697af-61d4-48c9-b76d-65685b218e4d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], - "x-ms-correlation-request-id": [ "3850e109-67a7-43b2-a209-009cd0054cde" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114506Z:3850e109-67a7-43b2-a209-009cd0054cde" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-correlation-request-id": [ "ed243954-9864-4c3a-bc63-3bfe55672b57" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082744Z:ed243954-9864-4c3a-bc63-3bfe55672b57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:45:06 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:27:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+8": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1310,35 +1249,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "1e276ff0-5b9f-49f4-9f3d-590271eac248" ], + "x-ms-request-id": [ "37ffc4f0-571e-4614-94d2-df315dd3ab34" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], - "x-ms-correlation-request-id": [ "12d25af4-8788-4db7-84d6-2e3f10179e7b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114516Z:12d25af4-8788-4db7-84d6-2e3f10179e7b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "22f719c2-bd92-49b0-9c08-a19081410cb4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082754Z:22f719c2-bd92-49b0-9c08-a19081410cb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:45:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:27:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+9": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1350,35 +1289,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "7ff2ab45-51dc-4709-a572-031c11707898" ], + "x-ms-request-id": [ "7ffebd21-f239-4cac-9625-55c8b21e1875" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], - "x-ms-correlation-request-id": [ "58e31fb9-be32-486a-af96-9322e3469885" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114527Z:58e31fb9-be32-486a-af96-9322e3469885" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "d6ab22bd-dac7-40f2-b1ab-57e7aac426b7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082805Z:d6ab22bd-dac7-40f2-b1ab-57e7aac426b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:45:26 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:28:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+10": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1390,35 +1329,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "ef006a74-9bd5-44be-aa0e-1dca49d678bb" ], + "x-ms-request-id": [ "4fdb6f54-9ede-4fab-86cb-9a995a3df5e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], - "x-ms-correlation-request-id": [ "eed9c2d2-e93c-4e5d-9093-1b03d279eab1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114537Z:eed9c2d2-e93c-4e5d-9093-1b03d279eab1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "dd1a2b45-b85e-4eab-9a18-7106d46f383b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082815Z:dd1a2b45-b85e-4eab-9a18-7106d46f383b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:45:37 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:28:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+11": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1430,35 +1369,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "ea76bada-33a5-4fec-b004-c98de2eb71e9" ], + "x-ms-request-id": [ "babce02f-dcea-430e-b117-348d020f0e55" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], - "x-ms-correlation-request-id": [ "1665ae28-6a48-468b-9726-ca5d66fd9bad" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114547Z:1665ae28-6a48-468b-9726-ca5d66fd9bad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "baf03dd8-9cb1-47d3-b270-272937e83249" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082825Z:baf03dd8-9cb1-47d3-b270-272937e83249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:45:47 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:28:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+12": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1470,35 +1409,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "6aaea428-1945-484f-94fd-586d590b6d5f" ], + "x-ms-request-id": [ "70e73757-2f2a-4fd3-919a-d72795198d44" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], - "x-ms-correlation-request-id": [ "ba5a2486-a036-46fb-a05a-1b835bd690ca" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114558Z:ba5a2486-a036-46fb-a05a-1b835bd690ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "5831bc28-7e37-4fde-a808-72bd7506cec2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082836Z:5831bc28-7e37-4fde-a808-72bd7506cec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:45:57 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:28:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+13": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1510,35 +1449,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "f3e02263-58bd-4fc5-bc1c-066327fd7e0a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], + "x-ms-request-id": [ "320bff28-d73d-45dd-b639-a9153b005f1f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b46b18c0-c1eb-4f33-b8a6-f06c704109ad" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114608Z:b46b18c0-c1eb-4f33-b8a6-f06c704109ad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "00980fcc-8d21-4632-8d9d-802b823360e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082846Z:00980fcc-8d21-4632-8d9d-802b823360e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:46:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:28:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+14": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1550,35 +1489,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "a16ad3ff-63bc-4029-a220-30507cc72217" ], + "x-ms-request-id": [ "32519595-9153-4c72-b0df-3f86e96dae1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11811" ], - "x-ms-correlation-request-id": [ "c021bb36-480b-44df-8ea3-e507f0fdd97d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114620Z:c021bb36-480b-44df-8ea3-e507f0fdd97d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "011d78fd-335d-439d-8c2d-8c52e1de3a81" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082856Z:011d78fd-335d-439d-8c2d-8c52e1de3a81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:46:19 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:28:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+15": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1590,35 +1529,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "f9cac468-8765-461a-ab28-387edfe8789a" ], + "x-ms-request-id": [ "5b8f55f4-ec8a-4644-8304-1c73e70a94bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11810" ], - "x-ms-correlation-request-id": [ "3fc669e2-5dce-46b5-9eba-e42482b9928d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114631Z:3fc669e2-5dce-46b5-9eba-e42482b9928d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-correlation-request-id": [ "3372b541-0848-413d-b8df-6ee17511c7d6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082907Z:3372b541-0848-413d-b8df-6ee17511c7d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:46:30 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:29:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+16": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1630,35 +1569,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "73448d5e-01c6-41ff-921a-2c4c50234aa4" ], + "x-ms-request-id": [ "8bf66a56-b80a-42a2-943b-c97e47c98618" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11809" ], - "x-ms-correlation-request-id": [ "d8c04334-93b1-44bd-8904-2169539730d7" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114641Z:d8c04334-93b1-44bd-8904-2169539730d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-correlation-request-id": [ "fa98991d-a05c-45fd-a1da-d3eb28ea94f0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082917Z:fa98991d-a05c-45fd-a1da-d3eb28ea94f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:46:40 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:29:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+17": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1670,35 +1609,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "b5fe0b72-38fb-436f-8982-1796dfab0538" ], + "x-ms-request-id": [ "630bb4a2-8d7d-44a4-989f-b58c9dc7570d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11808" ], - "x-ms-correlation-request-id": [ "07d19605-10e3-42f0-a699-f1fe8f404cc0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114651Z:07d19605-10e3-42f0-a699-f1fe8f404cc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-correlation-request-id": [ "8f4f93aa-c49b-47b0-bc9a-1856db13ba0f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082928Z:8f4f93aa-c49b-47b0-bc9a-1856db13ba0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:46:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:29:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+18": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1710,35 +1649,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "b94208e4-4cb1-4020-b8f9-a1edc0cdef08" ], + "x-ms-request-id": [ "0b5e3d58-a65c-4f4b-af87-951afdecbd95" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11807" ], - "x-ms-correlation-request-id": [ "671065c1-e9a8-41d3-b082-d8ab2abe4bb6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114702Z:671065c1-e9a8-41d3-b082-d8ab2abe4bb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-correlation-request-id": [ "c9e5b373-dfe7-4891-aa60-5bac3c7214f1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082938Z:c9e5b373-dfe7-4891-aa60-5bac3c7214f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:47:01 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:29:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+19": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1750,35 +1689,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "c3abdc8f-ba6d-4d1f-bad8-504387c3541c" ], + "x-ms-request-id": [ "867f9e4c-6db5-4f10-875d-89d81fedbb61" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11806" ], - "x-ms-correlation-request-id": [ "18daeeda-8685-45b0-8f4b-94f401edb7f4" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114712Z:18daeeda-8685-45b0-8f4b-94f401edb7f4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-correlation-request-id": [ "32daf068-749a-43d3-994a-17180306c251" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082948Z:32daf068-749a-43d3-994a-17180306c251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:47:12 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:29:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+20": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1790,35 +1729,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "5e065e10-0361-405f-b3b5-5ba3a051e993" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], + "x-ms-request-id": [ "89650b44-1c8c-4f11-945e-ad3d9bcc79ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "007c6f27-915c-4770-9e63-a2edf1df42d8" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114722Z:007c6f27-915c-4770-9e63-a2edf1df42d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], + "x-ms-correlation-request-id": [ "0b8fc9f1-07ad-4453-adca-a05bfda55d31" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T082959Z:0b8fc9f1-07ad-4453-adca-a05bfda55d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:47:22 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:29:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+21": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1830,35 +1769,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "beae5c32-85de-4282-8b6d-ea77bd77f965" ], + "x-ms-request-id": [ "7d0267c5-5020-4e93-bdf4-c25c4fede589" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], - "x-ms-correlation-request-id": [ "7a80e16c-6f73-4ecb-a8b7-b9bff9efdde2" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114733Z:7a80e16c-6f73-4ecb-a8b7-b9bff9efdde2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], + "x-ms-correlation-request-id": [ "7ac0bc5f-12a8-47f6-9dee-d9de9ad7236d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083009Z:7ac0bc5f-12a8-47f6-9dee-d9de9ad7236d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:47:33 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:30:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+22": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1870,35 +1809,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "50e62f44-8c45-4ea4-9317-6be230263219" ], + "x-ms-request-id": [ "f10ee047-2aee-482b-9dcf-12c2b2895e05" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], - "x-ms-correlation-request-id": [ "fcc225f6-9db3-4eca-a60d-4188f45838a4" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114744Z:fcc225f6-9db3-4eca-a60d-4188f45838a4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], + "x-ms-correlation-request-id": [ "2d1c1d2e-ef7e-41ef-9587-78ee53dbb1fb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083020Z:2d1c1d2e-ef7e-41ef-9587-78ee53dbb1fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:47:44 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:30:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+23": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "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": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1910,35 +1849,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "e9ce3955-a5cd-4754-8e0b-ad3a5b3540d1" ], + "x-ms-request-id": [ "60eea81a-0cda-4a9c-af57-b7e5f478a34b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], - "x-ms-correlation-request-id": [ "e9b1e67a-bbec-4bf6-90e8-0fdecbbe679c" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114754Z:e9b1e67a-bbec-4bf6-90e8-0fdecbbe679c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], + "x-ms-correlation-request-id": [ "1150a68c-4c39-4733-b71d-857f7981ddb0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083030Z:1150a68c-4c39-4733-b71d-857f7981ddb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:47:54 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:30:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+24": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "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": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1950,35 +1889,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "1729586d-ca92-4e58-bad3-04fe7df1342e" ], + "x-ms-request-id": [ "33758160-c357-4042-ace1-78cb704c129b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], - "x-ms-correlation-request-id": [ "e0ed58f6-c545-478e-9fbe-ae79da8a977b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114804Z:e0ed58f6-c545-478e-9fbe-ae79da8a977b" ], + "x-ms-correlation-request-id": [ "7ac9bc42-b7f2-4c95-bd6c-10183dc9b024" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083040Z:7ac9bc42-b7f2-4c95-bd6c-10183dc9b024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:48:04 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:30:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+25": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "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": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1990,35 +1929,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "abc3d939-f8bd-4082-b498-f557327ba4b1" ], + "x-ms-request-id": [ "bcb938d6-075c-4f13-bfd1-b411fcb6279f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], - "x-ms-correlation-request-id": [ "f0bd8f62-6505-4c26-a6b8-e9476d9f90a1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114815Z:f0bd8f62-6505-4c26-a6b8-e9476d9f90a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], + "x-ms-correlation-request-id": [ "fe64b188-da9d-4752-8750-1adb051f5b27" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083052Z:fe64b188-da9d-4752-8750-1adb051f5b27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:48:14 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:30:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+26": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "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": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2030,35 +1969,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "1badc2de-ad08-4729-8ca3-753e39a45cf2" ], + "x-ms-request-id": [ "784550e4-016e-4e70-b081-7a06aef53072" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], - "x-ms-correlation-request-id": [ "1d8dddca-cea9-43da-b80f-cff69802d437" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114825Z:1d8dddca-cea9-43da-b80f-cff69802d437" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], + "x-ms-correlation-request-id": [ "01ecd3f8-c0cf-4d4c-bd98-b96df906c36e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083102Z:01ecd3f8-c0cf-4d4c-bd98-b96df906c36e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:48:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:31:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+27": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "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": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2070,35 +2009,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "e0e3154f-e076-41c7-a08f-342310233a47" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], + "x-ms-request-id": [ "55b8d849-9f62-43f3-999b-034e4b7d679d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "91b2f7d6-0407-4707-b648-2733c67a4449" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114835Z:91b2f7d6-0407-4707-b648-2733c67a4449" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], + "x-ms-correlation-request-id": [ "a2c067e7-93f4-49bd-9054-a3661d985860" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083112Z:a2c067e7-93f4-49bd-9054-a3661d985860" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:48:34 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:31:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"InProgress\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01+28": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4e7b3597-736a-4e44-8bce-9f0bcf69fc04?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "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": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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,35 +2049,115 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "x-ms-request-id": [ "70070f9d-e32a-4ed8-91be-36be23ddc1ad" ], + "x-ms-request-id": [ "0de92c6a-48f0-4299-99b8-d3a90a07eedf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], - "x-ms-correlation-request-id": [ "dbc82989-5ad8-44c6-88e3-c095df928b38" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114847Z:dbc82989-5ad8-44c6-88e3-c095df928b38" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], + "x-ms-correlation-request-id": [ "52670180-cc9e-4299-aafe-efb541f067c7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083123Z:52670180-cc9e-4299-aafe-efb541f067c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:48:46 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:31:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "108" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"4e7b3597-736a-4e44-8bce-9f0bcf69fc04\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:44:14.19Z\"}" + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" } }, - "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2?api-version=2017-12-01+29": { + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246" ], - "x-ms-client-request-id": [ "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3", "931c4355-2045-481f-80b8-0c584275c9e3" ], + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], "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": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-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" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "92c1c209-41cb-4f59-a3fe-112eeecc0f0a" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], + "x-ms-correlation-request-id": [ "27739120-3991-49cb-a9e0-381aa9371329" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083133Z:27739120-3991-49cb-a9e0-381aa9371329" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 24 Jul 2020 08:31:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "108" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"InProgress\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" + } + }, + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9d76273c-1381-4238-9c08-650cf41d34b8?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "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" ], + "Retry-After": [ "10" ], + "x-ms-request-id": [ "fc809fb6-17da-45fb-82ad-88a72599d938" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], + "x-ms-correlation-request-id": [ "fd79b2c0-8a4e-4770-8f73-4c675c394af0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083144Z:fd79b2c0-8a4e-4770-8f73-4c675c394af0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Fri, 24 Jul 2020 08:31:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "107" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"name\":\"9d76273c-1381-4238-9c08-650cf41d34b8\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T08:26:51.053Z\"}" + } + }, + "Restore-AzMySqlServer+[NoContext]+PointInTimeRestore+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2?api-version=2017-12-01+31": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2?api-version=2017-12-01", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55" ], + "x-ms-client-request-id": [ "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44", "8b4aae2b-d0dd-4a01-a9cc-e297f9aded44" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer", "Az.MySql.internal\\New-AzMySqlServer" ], + "FullCommandName": [ "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create", "New-AzMySqlServer_Create" ], + "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": { @@ -2149,21 +2168,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "41cdb957-d6e2-4fdc-8dd6-98c588d13175" ], + "x-ms-request-id": [ "dd803ba3-8887-48ab-8124-b775af7c56cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], - "x-ms-correlation-request-id": [ "87678134-47e2-4806-b372-8bc676336074" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114847Z:87678134-47e2-4806-b372-8bc676336074" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], + "x-ms-correlation-request-id": [ "b9201906-29be-4e11-8738-9c55fd9be38d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T083144Z:b9201906-29be-4e11-8738-9c55fd9be38d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:48:47 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:31:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "935" ], + "Content-Length": [ "937" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Enabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-restore-2.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:54:14.597+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2\",\"name\":\"mysql-test-100-restore-2\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100-restore-2.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T08:36:51.303+00:00\",\"replicationRole\":\"None\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100-restore-2\",\"name\":\"mysql-test-100-restore-2\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } } } \ No newline at end of file diff --git a/src/MySql/test/Restore-AzMySqlServer.Tests.ps1 b/src/MySql/test/Restore-AzMySqlServer.Tests.ps1 index 9de32a63ad6b..75ba383e34f3 100644 --- a/src/MySql/test/Restore-AzMySqlServer.Tests.ps1 +++ b/src/MySql/test/Restore-AzMySqlServer.Tests.ps1 @@ -13,7 +13,7 @@ while(-not $mockingPath) { Describe 'Restore-AzMySqlServer' { It 'GeoRestore' { - $replica = Get-AzMySqlServer -ResourceGroupName $env.resourceGroup -ServerName $env.serverName | New-AzMySqlServerReplica -Name $env.replicaName -ResourceGroupName $env.resourceGroup + $replica = Get-AzMySqlServer -ResourceGroupName $env.resourceGroup -ServerName $env.serverName | New-AzMySqlReplica -Replica $env.replicaName -ResourceGroupName $env.resourceGroup $restoreServer = Restore-AzMySqlServer -Name $env.serverName -ResourceGroupName $env.resourceGroup -InputObject $replica -UseGeoRestore $restoreServer.Name | Should -Be $env.serverName $restoreServer.SkuName | Should -Be $env.Sku diff --git a/src/MySql/test/Update-AzMySqlConfiguration.Recording.json b/src/MySql/test/Update-AzMySqlConfiguration.Recording.json index 8cb254945f2a..56d48eea8fae 100644 --- a/src/MySql/test/Update-AzMySqlConfiguration.Recording.json +++ b/src/MySql/test/Update-AzMySqlConfiguration.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_retry_count?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"value\": \"15\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "247" ], - "x-ms-client-request-id": [ "c4e708f1-7f14-4942-b98d-bea795f2ec2f" ], - "CommandName": [ "Update-AzMySqlConfiguration" ], - "FullCommandName": [ "Update-AzMySqlConfiguration_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1490efe7-e09a-49da-ba44-1d2a04a22adc?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/12d527f8-26da-4367-af99-9420131c5e00?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1490efe7-e09a-49da-ba44-1d2a04a22adc?api-version=2017-12-01" ], - "x-ms-request-id": [ "1490efe7-e09a-49da-ba44-1d2a04a22adc" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/12d527f8-26da-4367-af99-9420131c5e00?api-version=2017-12-01" ], + "x-ms-request-id": [ "12d527f8-26da-4367-af99-9420131c5e00" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], - "x-ms-correlation-request-id": [ "6fb3a812-b40e-4d5d-b9e9-f7830039bbec" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114849Z:6fb3a812-b40e-4d5d-b9e9-f7830039bbec" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "003aef60-4eea-4a67-8514-5018c76b2a71" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T080318Z:003aef60-4eea-4a67-8514-5018c76b2a71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:48:49 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:03:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "80" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-04-08T11:48:49.343Z\"}" + "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-07-24T08:03:18.063Z\"}" } }, - "Update-AzMySqlConfiguration+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1490efe7-e09a-49da-ba44-1d2a04a22adc?api-version=2017-12-01+2": { + "Update-AzMySqlConfiguration+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/12d527f8-26da-4367-af99-9420131c5e00?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1490efe7-e09a-49da-ba44-1d2a04a22adc?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/12d527f8-26da-4367-af99-9420131c5e00?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "247", "248" ], - "x-ms-client-request-id": [ "c4e708f1-7f14-4942-b98d-bea795f2ec2f", "c4e708f1-7f14-4942-b98d-bea795f2ec2f" ], - "CommandName": [ "Update-AzMySqlConfiguration", "Update-AzMySqlConfiguration" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "01cfd543-d798-419e-94ec-604fd1121ae6", "01cfd543-d798-419e-94ec-604fd1121ae6" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlConfiguration", "Az.MySql.internal\\Update-AzMySqlConfiguration" ], "FullCommandName": [ "Update-AzMySqlConfiguration_UpdateExpanded", "Update-AzMySqlConfiguration_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "ac6d23e1-9036-466d-a983-78e22c18c195" ], + "x-ms-request-id": [ "f5856a6d-0d0e-405d-8357-1b409fb610aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], - "x-ms-correlation-request-id": [ "5080dfee-4f8a-42f1-8f82-9cd06fb4bb69" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114904Z:5080dfee-4f8a-42f1-8f82-9cd06fb4bb69" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "4e2f3f63-9e48-4aba-9641-ef77e8efab5f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T080333Z:4e2f3f63-9e48-4aba-9641-ef77e8efab5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:04 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:03:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"1490efe7-e09a-49da-ba44-1d2a04a22adc\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:48:49.343Z\"}" + "Content": "{\"name\":\"12d527f8-26da-4367-af99-9420131c5e00\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T08:03:18.063Z\"}" } }, "Update-AzMySqlConfiguration+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_retry_count?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/net_retry_count?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "247", "248", "249" ], - "x-ms-client-request-id": [ "c4e708f1-7f14-4942-b98d-bea795f2ec2f", "c4e708f1-7f14-4942-b98d-bea795f2ec2f", "c4e708f1-7f14-4942-b98d-bea795f2ec2f" ], - "CommandName": [ "Update-AzMySqlConfiguration", "Update-AzMySqlConfiguration", "Update-AzMySqlConfiguration" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "01cfd543-d798-419e-94ec-604fd1121ae6", "01cfd543-d798-419e-94ec-604fd1121ae6", "01cfd543-d798-419e-94ec-604fd1121ae6" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlConfiguration", "Az.MySql.internal\\Update-AzMySqlConfiguration", "Az.MySql.internal\\Update-AzMySqlConfiguration" ], "FullCommandName": [ "Update-AzMySqlConfiguration_UpdateExpanded", "Update-AzMySqlConfiguration_UpdateExpanded", "Update-AzMySqlConfiguration_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "11eb55e5-e30a-47f8-afbc-40d1569f2ea1" ], + "x-ms-request-id": [ "83813b6c-c64d-40de-a0ff-25a0db36c815" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], - "x-ms-correlation-request-id": [ "8978d75d-3951-492b-9725-d0a599047e2f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114905Z:8978d75d-3951-492b-9725-d0a599047e2f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "ecaf7de8-004a-4acf-afd5-6bd9e0657bb1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T080334Z:ecaf7de8-004a-4acf-afd5-6bd9e0657bb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:04 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:03:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "546" ], @@ -128,13 +121,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/wait_timeout?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"value\": \"150\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "250" ], - "x-ms-client-request-id": [ "d286cdaf-2176-4ae0-bd72-62ee2cb1dbca" ], - "CommandName": [ "Update-AzMySqlConfiguration" ], - "FullCommandName": [ "Update-AzMySqlConfiguration_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -146,38 +132,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/63ab48d5-de43-4e4c-8d8d-aa950dffd6e7?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/843d746e-2b2d-4130-ab79-dfdf85d1ec6a?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/63ab48d5-de43-4e4c-8d8d-aa950dffd6e7?api-version=2017-12-01" ], - "x-ms-request-id": [ "63ab48d5-de43-4e4c-8d8d-aa950dffd6e7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/843d746e-2b2d-4130-ab79-dfdf85d1ec6a?api-version=2017-12-01" ], + "x-ms-request-id": [ "843d746e-2b2d-4130-ab79-dfdf85d1ec6a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], - "x-ms-correlation-request-id": [ "111eecfd-2590-47d5-a45a-8585f8c18219" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114906Z:111eecfd-2590-47d5-a45a-8585f8c18219" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "edc6c221-1a44-4f50-96e6-10b896e558d3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T080335Z:edc6c221-1a44-4f50-96e6-10b896e558d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:05 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:03:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "79" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-04-08T11:49:05.89Z\"}" + "Content": "{\"operation\":\"UpdateElasticServerConfig\",\"startTime\":\"2020-07-24T08:03:35.11Z\"}" } }, - "Update-AzMySqlConfiguration+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/63ab48d5-de43-4e4c-8d8d-aa950dffd6e7?api-version=2017-12-01+2": { + "Update-AzMySqlConfiguration+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/843d746e-2b2d-4130-ab79-dfdf85d1ec6a?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/63ab48d5-de43-4e4c-8d8d-aa950dffd6e7?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/843d746e-2b2d-4130-ab79-dfdf85d1ec6a?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "250", "251" ], - "x-ms-client-request-id": [ "d286cdaf-2176-4ae0-bd72-62ee2cb1dbca", "d286cdaf-2176-4ae0-bd72-62ee2cb1dbca" ], - "CommandName": [ "Update-AzMySqlConfiguration", "Update-AzMySqlConfiguration" ], + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "141e5666-8c34-46c5-9c66-28f0c6b00646", "141e5666-8c34-46c5-9c66-28f0c6b00646" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlConfiguration", "Az.MySql.internal\\Update-AzMySqlConfiguration" ], "FullCommandName": [ "Update-AzMySqlConfiguration_UpdateViaIdentityExpanded", "Update-AzMySqlConfiguration_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -189,21 +175,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "1aeca739-0f2b-4d20-ac96-3e7619da193f" ], + "x-ms-request-id": [ "f9af11c1-4088-4b49-ae38-dc60aac8f4fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], - "x-ms-correlation-request-id": [ "253e4bad-8a55-4545-a69e-170db93f2088" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114921Z:253e4bad-8a55-4545-a69e-170db93f2088" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "ece9af74-3487-49ce-a600-861f827b0725" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T080350Z:ece9af74-3487-49ce-a600-861f827b0725" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:20 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:03:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"63ab48d5-de43-4e4c-8d8d-aa950dffd6e7\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:49:05.89Z\"}" + "Content": "{\"name\":\"843d746e-2b2d-4130-ab79-dfdf85d1ec6a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T08:03:35.11Z\"}" } }, "Update-AzMySqlConfiguration+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/wait_timeout?api-version=2017-12-01+3": { @@ -212,12 +198,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/configurations/wait_timeout?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "250", "251", "252" ], - "x-ms-client-request-id": [ "d286cdaf-2176-4ae0-bd72-62ee2cb1dbca", "d286cdaf-2176-4ae0-bd72-62ee2cb1dbca", "d286cdaf-2176-4ae0-bd72-62ee2cb1dbca" ], - "CommandName": [ "Update-AzMySqlConfiguration", "Update-AzMySqlConfiguration", "Update-AzMySqlConfiguration" ], + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "141e5666-8c34-46c5-9c66-28f0c6b00646", "141e5666-8c34-46c5-9c66-28f0c6b00646", "141e5666-8c34-46c5-9c66-28f0c6b00646" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlConfiguration", "Az.MySql.internal\\Update-AzMySqlConfiguration", "Az.MySql.internal\\Update-AzMySqlConfiguration" ], "FullCommandName": [ "Update-AzMySqlConfiguration_UpdateViaIdentityExpanded", "Update-AzMySqlConfiguration_UpdateViaIdentityExpanded", "Update-AzMySqlConfiguration_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -228,14 +214,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "03690324-0a30-4003-acb5-6ca93cc12406" ], + "x-ms-request-id": [ "6e672555-cf54-477c-b07e-b6828c9819aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11792" ], - "x-ms-correlation-request-id": [ "0c1357fe-3778-452b-b4d7-77d0d78096b3" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114922Z:0c1357fe-3778-452b-b4d7-77d0d78096b3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-correlation-request-id": [ "afff8217-5980-4744-a588-a52aae4c31ef" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T080351Z:afff8217-5980-4744-a588-a52aae4c31ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:21 GMT" ] + "Date": [ "Fri, 24 Jul 2020 08:03:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "542" ], diff --git a/src/MySql/test/Update-AzMySqlFirewallRule.Recording.json b/src/MySql/test/Update-AzMySqlFirewallRule.Recording.json index ae2ef92b736d..61487ee1f6fd 100644 --- a/src/MySql/test/Update-AzMySqlFirewallRule.Recording.json +++ b/src/MySql/test/Update-AzMySqlFirewallRule.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "9b73747e-24e3-46d3-8d76-139ca67fa7eb" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a5bd827d-a777-4f0e-96f0-13137b705f80?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/8e22193e-3d9c-4e45-bf1d-61bd3b5e29d8?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a5bd827d-a777-4f0e-96f0-13137b705f80?api-version=2017-12-01" ], - "x-ms-request-id": [ "a5bd827d-a777-4f0e-96f0-13137b705f80" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8e22193e-3d9c-4e45-bf1d-61bd3b5e29d8?api-version=2017-12-01" ], + "x-ms-request-id": [ "8e22193e-3d9c-4e45-bf1d-61bd3b5e29d8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], - "x-ms-correlation-request-id": [ "21d8b8da-76ca-4e53-9abe-a27060d2cc4d" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114924Z:21d8b8da-76ca-4e53-9abe-a27060d2cc4d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "0366fffe-8953-465f-b476-4d85e47c7d74" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071013Z:0366fffe-8953-465f-b476-4d85e47c7d74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:24 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:10:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T11:49:22.813Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T07:10:12.05Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a5bd827d-a777-4f0e-96f0-13137b705f80?api-version=2017-12-01+2": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8e22193e-3d9c-4e45-bf1d-61bd3b5e29d8?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a5bd827d-a777-4f0e-96f0-13137b705f80?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8e22193e-3d9c-4e45-bf1d-61bd3b5e29d8?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "253", "254" ], - "x-ms-client-request-id": [ "9b73747e-24e3-46d3-8d76-139ca67fa7eb", "9b73747e-24e3-46d3-8d76-139ca67fa7eb" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "976f4caa-e284-42e7-b4e8-4fdd6f592cb1", "976f4caa-e284-42e7-b4e8-4fdd6f592cb1" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "5d0beebe-eb1b-4553-937e-98228ddb496d" ], + "x-ms-request-id": [ "94b52d49-ab53-4986-ab92-ee94f5148402" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11791" ], - "x-ms-correlation-request-id": [ "00fbf3f7-fe11-4273-b283-e28579f9fd72" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114939Z:00fbf3f7-fe11-4273-b283-e28579f9fd72" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-correlation-request-id": [ "a34619d2-5a87-404e-8aa1-193eb0a7069c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071028Z:a34619d2-5a87-404e-8aa1-193eb0a7069c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:39 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:10:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"a5bd827d-a777-4f0e-96f0-13137b705f80\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:49:22.813Z\"}" + "Content": "{\"name\":\"8e22193e-3d9c-4e45-bf1d-61bd3b5e29d8\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:10:12.05Z\"}" } }, "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "253", "254", "255" ], - "x-ms-client-request-id": [ "9b73747e-24e3-46d3-8d76-139ca67fa7eb", "9b73747e-24e3-46d3-8d76-139ca67fa7eb", "9b73747e-24e3-46d3-8d76-139ca67fa7eb" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "976f4caa-e284-42e7-b4e8-4fdd6f592cb1", "976f4caa-e284-42e7-b4e8-4fdd6f592cb1", "976f4caa-e284-42e7-b4e8-4fdd6f592cb1" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bf1f1aaf-2fd9-4011-9d75-837717e62659" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11790" ], + "x-ms-request-id": [ "b4940d76-138b-46fd-9c8c-26b5ca778ee4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "b284fd7b-9d2e-4d6f-a9df-70c1677da8c6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114941Z:b284fd7b-9d2e-4d6f-a9df-70c1677da8c6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "4c349946-ef8b-42b0-b373-56ec19e1b25d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071029Z:4c349946-ef8b-42b0-b373-56ec19e1b25d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:40 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:10:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -126,15 +119,8 @@ "Request": { "Method": "PUT", "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", - "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.3\",\n \"startIpAddress\": \"0.0.0.2\"\n }\n}", + "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.2\",\n \"startIpAddress\": \"0.0.0.2\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "1ae88e85-ca1b-4513-adc7-f6b887890ab9" ], - "CommandName": [ "Update-AzMySqlFirewallRule" ], - "FullCommandName": [ "Update-AzMySqlFirewallRule_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -146,38 +132,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ae639e50-562f-48fc-9858-453a10089c6a?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e5917bef-26e5-48bd-a3d4-ccfd236ebb4b?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae639e50-562f-48fc-9858-453a10089c6a?api-version=2017-12-01" ], - "x-ms-request-id": [ "ae639e50-562f-48fc-9858-453a10089c6a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e5917bef-26e5-48bd-a3d4-ccfd236ebb4b?api-version=2017-12-01" ], + "x-ms-request-id": [ "e5917bef-26e5-48bd-a3d4-ccfd236ebb4b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], - "x-ms-correlation-request-id": [ "aa87ccb7-47ef-446e-b859-c1a75a9c7ec5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114943Z:aa87ccb7-47ef-446e-b859-c1a75a9c7ec5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "e7aa58cd-2a9c-46b4-b4b5-bce1b8b84e5d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071030Z:e7aa58cd-2a9c-46b4-b4b5-bce1b8b84e5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:42 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:10:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "86" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T11:49:42.447Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T07:10:29.63Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae639e50-562f-48fc-9858-453a10089c6a?api-version=2017-12-01+5": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e5917bef-26e5-48bd-a3d4-ccfd236ebb4b?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ae639e50-562f-48fc-9858-453a10089c6a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e5917bef-26e5-48bd-a3d4-ccfd236ebb4b?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "256", "257" ], - "x-ms-client-request-id": [ "1ae88e85-ca1b-4513-adc7-f6b887890ab9", "1ae88e85-ca1b-4513-adc7-f6b887890ab9" ], - "CommandName": [ "Update-AzMySqlFirewallRule", "Update-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "f648dd60-5779-47ac-9af9-cd4d906c7f3d", "f648dd60-5779-47ac-9af9-cd4d906c7f3d" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlFirewallRule", "Az.MySql.internal\\Update-AzMySqlFirewallRule" ], "FullCommandName": [ "Update-AzMySqlFirewallRule_UpdateExpanded", "Update-AzMySqlFirewallRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -189,21 +175,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "adccc1c4-4cf8-49bd-b671-ac8d5feed08d" ], + "x-ms-request-id": [ "49d32cc6-8a69-47fd-9653-b20d67e253db" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11789" ], - "x-ms-correlation-request-id": [ "a91079de-2384-4826-a299-da9255a89b14" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114959Z:a91079de-2384-4826-a299-da9255a89b14" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "fdf0b140-07a2-46fd-bb8e-1c36b9c021a1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071046Z:fdf0b140-07a2-46fd-bb8e-1c36b9c021a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:10:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "107" ], + "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"ae639e50-562f-48fc-9858-453a10089c6a\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:49:42.447Z\"}" + "Content": "{\"name\":\"e5917bef-26e5-48bd-a3d4-ccfd236ebb4b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:10:29.63Z\"}" } }, "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+6": { @@ -212,12 +198,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "256", "257", "258" ], - "x-ms-client-request-id": [ "1ae88e85-ca1b-4513-adc7-f6b887890ab9", "1ae88e85-ca1b-4513-adc7-f6b887890ab9", "1ae88e85-ca1b-4513-adc7-f6b887890ab9" ], - "CommandName": [ "Update-AzMySqlFirewallRule", "Update-AzMySqlFirewallRule", "Update-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "f648dd60-5779-47ac-9af9-cd4d906c7f3d", "f648dd60-5779-47ac-9af9-cd4d906c7f3d", "f648dd60-5779-47ac-9af9-cd4d906c7f3d" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlFirewallRule", "Az.MySql.internal\\Update-AzMySqlFirewallRule", "Az.MySql.internal\\Update-AzMySqlFirewallRule" ], "FullCommandName": [ "Update-AzMySqlFirewallRule_UpdateExpanded", "Update-AzMySqlFirewallRule_UpdateExpanded", "Update-AzMySqlFirewallRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -228,21 +214,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "df1b853d-9959-4f2c-84df-b8f91d9c7cf7" ], + "x-ms-request-id": [ "b4d437f4-ef98-42a7-ae15-eac1066cedf8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], - "x-ms-correlation-request-id": [ "d769631e-90c7-45c9-be1b-2e396b0fe739" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T114959Z:d769631e-90c7-45c9-be1b-2e396b0fe739" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "52ec5430-55c3-4e99-80f9-0ceff6ad33c7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071046Z:52ec5430-55c3-4e99-80f9-0ceff6ad33c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:49:58 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:10:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.2\",\"endIpAddress\":\"0.0.0.3\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01\",\"name\":\"mysqlrule01\",\"type\":\"Microsoft.DBforMySQL/servers/firewallRules\"}" + "Content": "{\"properties\":{\"startIpAddress\":\"0.0.0.2\",\"endIpAddress\":\"0.0.0.2\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01\",\"name\":\"mysqlrule01\",\"type\":\"Microsoft.DBforMySQL/servers/firewallRules\"}" } }, "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+7": { @@ -251,12 +237,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "7a01579c-4052-44fd-a044-2666ca91792a" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "edf6d107-aaf1-47a9-b7d8-11d542a54ffe" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -267,38 +253,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/43f15f43-a0e3-4f81-979f-a9bdabc18d09?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ef9d3f5d-7528-4905-b20d-f765ede790a2?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/43f15f43-a0e3-4f81-979f-a9bdabc18d09?api-version=2017-12-01" ], - "x-ms-request-id": [ "43f15f43-a0e3-4f81-979f-a9bdabc18d09" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ef9d3f5d-7528-4905-b20d-f765ede790a2?api-version=2017-12-01" ], + "x-ms-request-id": [ "ef9d3f5d-7528-4905-b20d-f765ede790a2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14982" ], - "x-ms-correlation-request-id": [ "042b2934-34ca-446f-99b5-a4ad721305a5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115001Z:042b2934-34ca-446f-99b5-a4ad721305a5" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "882df628-744c-4816-ba13-1ed5ce1f70d4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071048Z:882df628-744c-4816-ba13-1ed5ce1f70d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:00 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:10:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T11:49:59.917Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-07-24T07:10:47.143Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/43f15f43-a0e3-4f81-979f-a9bdabc18d09?api-version=2017-12-01+8": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ef9d3f5d-7528-4905-b20d-f765ede790a2?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/43f15f43-a0e3-4f81-979f-a9bdabc18d09?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/ef9d3f5d-7528-4905-b20d-f765ede790a2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "259", "260" ], - "x-ms-client-request-id": [ "7a01579c-4052-44fd-a044-2666ca91792a", "7a01579c-4052-44fd-a044-2666ca91792a" ], + "x-ms-unique-id": [ "7", "8" ], + "x-ms-client-request-id": [ "edf6d107-aaf1-47a9-b7d8-11d542a54ffe", "edf6d107-aaf1-47a9-b7d8-11d542a54ffe" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -310,35 +296,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "7a515713-f40e-4212-a7a7-e5f809b3f982" ], + "x-ms-request-id": [ "839c3b2c-f247-4f45-811b-6d3e671eed63" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], - "x-ms-correlation-request-id": [ "c18accee-762d-4137-9032-74b7cd57e085" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115016Z:c18accee-762d-4137-9032-74b7cd57e085" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "c447739e-c759-4ba2-8aa2-2d32cc7b0f07" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071103Z:c447739e-c759-4ba2-8aa2-2d32cc7b0f07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"43f15f43-a0e3-4f81-979f-a9bdabc18d09\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:49:59.917Z\"}" + "Content": "{\"name\":\"ef9d3f5d-7528-4905-b20d-f765ede790a2\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:10:47.143Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/43f15f43-a0e3-4f81-979f-a9bdabc18d09?api-version=2017-12-01+9": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ef9d3f5d-7528-4905-b20d-f765ede790a2?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/43f15f43-a0e3-4f81-979f-a9bdabc18d09?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/ef9d3f5d-7528-4905-b20d-f765ede790a2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "259", "260", "261" ], - "x-ms-client-request-id": [ "7a01579c-4052-44fd-a044-2666ca91792a", "7a01579c-4052-44fd-a044-2666ca91792a", "7a01579c-4052-44fd-a044-2666ca91792a" ], + "x-ms-unique-id": [ "7", "8", "9" ], + "x-ms-client-request-id": [ "edf6d107-aaf1-47a9-b7d8-11d542a54ffe", "edf6d107-aaf1-47a9-b7d8-11d542a54ffe", "edf6d107-aaf1-47a9-b7d8-11d542a54ffe" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -349,14 +335,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6b8a5e04-ef37-49ce-8eff-10d77702ad3f" ], + "x-ms-request-id": [ "060df7c3-de6f-4281-b2b4-ef197c10c119" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11787" ], - "x-ms-correlation-request-id": [ "9e7bf857-a884-4fd8-be25-8a0d016f86c8" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115016Z:9e7bf857-a884-4fd8-be25-8a0d016f86c8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "39cbe593-e4e4-469f-9b10-66da8b407269" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071104Z:39cbe593-e4e4-469f-9b10-66da8b407269" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:03 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -371,13 +357,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.1\",\n \"startIpAddress\": \"0.0.0.0\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "262" ], - "x-ms-client-request-id": [ "46e2df18-2c0a-4aa7-9d82-57926f5da1f3" ], - "CommandName": [ "New-AzMySqlFirewallRule" ], - "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -389,38 +368,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/8eee1d47-90d7-4ca9-9af8-e7e36275d51a?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/2ad7e857-dd21-4321-935f-cf1966d0c230?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8eee1d47-90d7-4ca9-9af8-e7e36275d51a?api-version=2017-12-01" ], - "x-ms-request-id": [ "8eee1d47-90d7-4ca9-9af8-e7e36275d51a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2ad7e857-dd21-4321-935f-cf1966d0c230?api-version=2017-12-01" ], + "x-ms-request-id": [ "2ad7e857-dd21-4321-935f-cf1966d0c230" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], - "x-ms-correlation-request-id": [ "522cc896-fbcd-4668-adec-6ada784a72da" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115018Z:522cc896-fbcd-4668-adec-6ada784a72da" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "53c48bfb-a48e-4a37-9db5-2fe582d552ab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071106Z:53c48bfb-a48e-4a37-9db5-2fe582d552ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:18 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T11:50:17.027Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T07:11:04.723Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8eee1d47-90d7-4ca9-9af8-e7e36275d51a?api-version=2017-12-01+2": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2ad7e857-dd21-4321-935f-cf1966d0c230?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/8eee1d47-90d7-4ca9-9af8-e7e36275d51a?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/2ad7e857-dd21-4321-935f-cf1966d0c230?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "262", "263" ], - "x-ms-client-request-id": [ "46e2df18-2c0a-4aa7-9d82-57926f5da1f3", "46e2df18-2c0a-4aa7-9d82-57926f5da1f3" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "10", "11" ], + "x-ms-client-request-id": [ "c63572c1-0155-4bfb-ac8a-de3daabf4357", "c63572c1-0155-4bfb-ac8a-de3daabf4357" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -432,21 +411,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "690130b4-4187-4a55-8725-b41f5378ce87" ], + "x-ms-request-id": [ "dc9ffdf3-f109-4fa9-9af1-7cdf52d2af66" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11786" ], - "x-ms-correlation-request-id": [ "4f7acae8-5a75-4966-9e41-dc5a50c87a2a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115033Z:4f7acae8-5a75-4966-9e41-dc5a50c87a2a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "26792263-d3aa-4174-85ab-6ae2f5d251f1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071121Z:26792263-d3aa-4174-85ab-6ae2f5d251f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:32 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"8eee1d47-90d7-4ca9-9af8-e7e36275d51a\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:50:17.027Z\"}" + "Content": "{\"name\":\"2ad7e857-dd21-4321-935f-cf1966d0c230\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:11:04.723Z\"}" } }, "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+3": { @@ -455,12 +434,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "262", "263", "264" ], - "x-ms-client-request-id": [ "46e2df18-2c0a-4aa7-9d82-57926f5da1f3", "46e2df18-2c0a-4aa7-9d82-57926f5da1f3", "46e2df18-2c0a-4aa7-9d82-57926f5da1f3" ], - "CommandName": [ "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule", "New-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "10", "11", "12" ], + "x-ms-client-request-id": [ "c63572c1-0155-4bfb-ac8a-de3daabf4357", "c63572c1-0155-4bfb-ac8a-de3daabf4357", "c63572c1-0155-4bfb-ac8a-de3daabf4357" ], + "CommandName": [ "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule", "Az.MySql.internal\\New-AzMySqlFirewallRule" ], "FullCommandName": [ "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded", "New-AzMySqlFirewallRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -471,14 +450,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d243c805-7785-4351-9a14-dd86b74ebbb4" ], + "x-ms-request-id": [ "16612444-1630-4fd6-b7ff-84f3585b4314" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11785" ], - "x-ms-correlation-request-id": [ "55f1ef23-6609-44c9-b94b-0fb06e6836f2" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115033Z:55f1ef23-6609-44c9-b94b-0fb06e6836f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "232c1ba8-f3f2-40ef-bc00-d4aa5a6461ef" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071121Z:232c1ba8-f3f2-40ef-bc00-d4aa5a6461ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:33 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -494,13 +473,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"endIpAddress\": \"0.0.0.3\",\n \"startIpAddress\": \"0.0.0.2\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "265" ], - "x-ms-client-request-id": [ "f763d527-6dbb-45a2-940c-5c47fe4a268d" ], - "CommandName": [ "Update-AzMySqlFirewallRule" ], - "FullCommandName": [ "Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -512,38 +484,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/e45633bf-c137-4bc2-9ef1-d3daee12abaf?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/50b53200-9ac0-4795-9a50-fec3a74287c7?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e45633bf-c137-4bc2-9ef1-d3daee12abaf?api-version=2017-12-01" ], - "x-ms-request-id": [ "e45633bf-c137-4bc2-9ef1-d3daee12abaf" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/50b53200-9ac0-4795-9a50-fec3a74287c7?api-version=2017-12-01" ], + "x-ms-request-id": [ "50b53200-9ac0-4795-9a50-fec3a74287c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], - "x-ms-correlation-request-id": [ "980d3bb3-7e55-4271-bd9e-89d281c62eaa" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115035Z:980d3bb3-7e55-4271-bd9e-89d281c62eaa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "9cc23fc2-7fc1-4b52-a179-56d26d5e4fac" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071123Z:9cc23fc2-7fc1-4b52-a179-56d26d5e4fac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:34 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-04-08T11:50:34.463Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerFirewallRules\",\"startTime\":\"2020-07-24T07:11:22.347Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e45633bf-c137-4bc2-9ef1-d3daee12abaf?api-version=2017-12-01+5": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/50b53200-9ac0-4795-9a50-fec3a74287c7?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/e45633bf-c137-4bc2-9ef1-d3daee12abaf?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/50b53200-9ac0-4795-9a50-fec3a74287c7?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "265", "266" ], - "x-ms-client-request-id": [ "f763d527-6dbb-45a2-940c-5c47fe4a268d", "f763d527-6dbb-45a2-940c-5c47fe4a268d" ], - "CommandName": [ "Update-AzMySqlFirewallRule", "Update-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "13", "14" ], + "x-ms-client-request-id": [ "280ba601-a4b1-4b72-82d2-62bb1b91ec0f", "280ba601-a4b1-4b72-82d2-62bb1b91ec0f" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlFirewallRule", "Az.MySql.internal\\Update-AzMySqlFirewallRule" ], "FullCommandName": [ "Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded", "Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -555,21 +527,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "8f6cca9c-4c4f-4350-affb-5a5a83c6d750" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11784" ], + "x-ms-request-id": [ "1dbd1a16-10bf-4914-81f0-a4ce26e274f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "c4df4e61-70bb-417c-960c-8ba7374d22b0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115050Z:c4df4e61-70bb-417c-960c-8ba7374d22b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "82c51de4-6274-451f-bf78-0125a7a7c604" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071139Z:82c51de4-6274-451f-bf78-0125a7a7c604" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:50 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"e45633bf-c137-4bc2-9ef1-d3daee12abaf\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:50:34.463Z\"}" + "Content": "{\"name\":\"50b53200-9ac0-4795-9a50-fec3a74287c7\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:11:22.347Z\"}" } }, "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01+6": { @@ -578,12 +550,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "265", "266", "267" ], - "x-ms-client-request-id": [ "f763d527-6dbb-45a2-940c-5c47fe4a268d", "f763d527-6dbb-45a2-940c-5c47fe4a268d", "f763d527-6dbb-45a2-940c-5c47fe4a268d" ], - "CommandName": [ "Update-AzMySqlFirewallRule", "Update-AzMySqlFirewallRule", "Update-AzMySqlFirewallRule" ], + "x-ms-unique-id": [ "13", "14", "15" ], + "x-ms-client-request-id": [ "280ba601-a4b1-4b72-82d2-62bb1b91ec0f", "280ba601-a4b1-4b72-82d2-62bb1b91ec0f", "280ba601-a4b1-4b72-82d2-62bb1b91ec0f" ], + "CommandName": [ "Az.MySql.internal\\Update-AzMySqlFirewallRule", "Az.MySql.internal\\Update-AzMySqlFirewallRule", "Az.MySql.internal\\Update-AzMySqlFirewallRule" ], "FullCommandName": [ "Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded", "Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded", "Update-AzMySqlFirewallRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -594,14 +566,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2d6e8892-57ad-4fc5-9d0b-61a14f4c1bfa" ], + "x-ms-request-id": [ "cbcd2644-5096-45e7-b549-cc89f405af13" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11783" ], - "x-ms-correlation-request-id": [ "09b0ab11-2da2-4495-9345-425486d0e1f6" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115051Z:09b0ab11-2da2-4495-9345-425486d0e1f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "a3c46318-93b6-4d04-a5a0-465e3a421c1d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071139Z:a3c46318-93b6-4d04-a5a0-465e3a421c1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "305" ], @@ -617,12 +589,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/firewallRules/mysqlrule01?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "268" ], - "x-ms-client-request-id": [ "25976654-f2ee-41a0-b669-cea0315c1f55" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "cdc45e5e-5d1c-4178-a570-d550e667ee2e" ], "CommandName": [ "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -633,38 +605,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a29a4815-df77-4526-8b7f-817639e50e84?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1539b77e-80cb-4d98-9892-bdc692eec670?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a29a4815-df77-4526-8b7f-817639e50e84?api-version=2017-12-01" ], - "x-ms-request-id": [ "a29a4815-df77-4526-8b7f-817639e50e84" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1539b77e-80cb-4d98-9892-bdc692eec670?api-version=2017-12-01" ], + "x-ms-request-id": [ "1539b77e-80cb-4d98-9892-bdc692eec670" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14981" ], - "x-ms-correlation-request-id": [ "ee33cc82-281f-4e56-9947-1b6529585269" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115053Z:ee33cc82-281f-4e56-9947-1b6529585269" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-correlation-request-id": [ "668bd5e8-2892-40e9-a1ae-cdc51382db9a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071140Z:668bd5e8-2892-40e9-a1ae-cdc51382db9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:50:53 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "83" ], + "Content-Length": [ "84" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-04-08T11:50:52.62Z\"}" + "Content": "{\"operation\":\"DropElasticServerFirewallRule\",\"startTime\":\"2020-07-24T07:11:39.783Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a29a4815-df77-4526-8b7f-817639e50e84?api-version=2017-12-01+8": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1539b77e-80cb-4d98-9892-bdc692eec670?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a29a4815-df77-4526-8b7f-817639e50e84?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/1539b77e-80cb-4d98-9892-bdc692eec670?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "268", "269" ], - "x-ms-client-request-id": [ "25976654-f2ee-41a0-b669-cea0315c1f55", "25976654-f2ee-41a0-b669-cea0315c1f55" ], + "x-ms-unique-id": [ "16", "17" ], + "x-ms-client-request-id": [ "cdc45e5e-5d1c-4178-a570-d550e667ee2e", "cdc45e5e-5d1c-4178-a570-d550e667ee2e" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -676,35 +648,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "8e56f07f-98cd-4de9-a9df-ce7e2bf9935d" ], + "x-ms-request-id": [ "5d9aa4a5-874b-46ef-bbd2-789fa606d365" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11782" ], - "x-ms-correlation-request-id": [ "6f8deb0c-d4a9-4fdb-aaf5-fbf368c09a9b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115109Z:6f8deb0c-d4a9-4fdb-aaf5-fbf368c09a9b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "087ce8fc-5129-4d34-a985-f630c90edb1e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071156Z:087ce8fc-5129-4d34-a985-f630c90edb1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:51:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"a29a4815-df77-4526-8b7f-817639e50e84\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:50:52.62Z\"}" + "Content": "{\"name\":\"1539b77e-80cb-4d98-9892-bdc692eec670\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:11:39.783Z\"}" } }, - "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a29a4815-df77-4526-8b7f-817639e50e84?api-version=2017-12-01+9": { + "Update-AzMySqlFirewallRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1539b77e-80cb-4d98-9892-bdc692eec670?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a29a4815-df77-4526-8b7f-817639e50e84?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/1539b77e-80cb-4d98-9892-bdc692eec670?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "268", "269", "270" ], - "x-ms-client-request-id": [ "25976654-f2ee-41a0-b669-cea0315c1f55", "25976654-f2ee-41a0-b669-cea0315c1f55", "25976654-f2ee-41a0-b669-cea0315c1f55" ], + "x-ms-unique-id": [ "16", "17", "18" ], + "x-ms-client-request-id": [ "cdc45e5e-5d1c-4178-a570-d550e667ee2e", "cdc45e5e-5d1c-4178-a570-d550e667ee2e", "cdc45e5e-5d1c-4178-a570-d550e667ee2e" ], "CommandName": [ "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule", "Remove-AzMySqlFirewallRule" ], "FullCommandName": [ "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete", "Remove-AzMySqlFirewallRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -715,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b82c4e47-4d8b-4b25-85a6-b163d2b14ba0" ], + "x-ms-request-id": [ "b71bd455-606a-48e2-a7a2-d5e1d355a7ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11781" ], - "x-ms-correlation-request-id": [ "c5de1bbe-8be2-42cb-a331-add7460ed300" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115109Z:c5de1bbe-8be2-42cb-a331-add7460ed300" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "d2d1c8fd-143b-42a4-bf40-9599180ff2ab" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T071156Z:d2d1c8fd-143b-42a4-bf40-9599180ff2ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:51:08 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:11:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/Update-AzMySqlFirewallRule.Tests.ps1 b/src/MySql/test/Update-AzMySqlFirewallRule.Tests.ps1 index c528f9dac4a5..ea642647c8cb 100644 --- a/src/MySql/test/Update-AzMySqlFirewallRule.Tests.ps1 +++ b/src/MySql/test/Update-AzMySqlFirewallRule.Tests.ps1 @@ -14,9 +14,8 @@ while(-not $mockingPath) { Describe 'Update-AzMySqlFirewallRule' { It 'UpdateExpanded' { New-AzMySqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -EndIPAddress 0.0.0.1 -StartIPAddress 0.0.0.0 - $rule = Update-AzMySqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -EndIPAddress 0.0.0.3 -StartIPAddress 0.0.0.2 + $rule = Update-AzMySqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName -StartIPAddress 0.0.0.2 $rule.StartIPAddress | Should -Be 0.0.0.2 - $rule.EndIPAddress | Should -Be 0.0.0.3 Remove-AzMySqlFirewallRule -Name $env.firewallRuleName -ResourceGroupName $env.resourceGroup -ServerName $env.serverName } diff --git a/src/MySql/test/Update-AzMySqlServer.Recording.json b/src/MySql/test/Update-AzMySqlServer.Recording.json index 015125cf731d..ddf4409cd2b0 100644 --- a/src/MySql/test/Update-AzMySqlServer.Recording.json +++ b/src/MySql/test/Update-AzMySqlServer.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"sslEnforcement\": \"Disabled\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "271" ], - "x-ms-client-request-id": [ "b9ceed09-fb88-44be-8594-f01d14fad643" ], - "CommandName": [ "Az.MySql.internal\\Update-AzMySqlServer" ], - "FullCommandName": [ "Update-AzMySqlServer_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/033d6ba4-926d-4e20-a9ce-b1d2dccce144?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c235c4a7-107f-4565-9b27-6860f50cc315?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/033d6ba4-926d-4e20-a9ce-b1d2dccce144?api-version=2017-12-01" ], - "x-ms-request-id": [ "033d6ba4-926d-4e20-a9ce-b1d2dccce144" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c235c4a7-107f-4565-9b27-6860f50cc315?api-version=2017-12-01" ], + "x-ms-request-id": [ "c235c4a7-107f-4565-9b27-6860f50cc315" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], - "x-ms-correlation-request-id": [ "2ce52768-8140-4fd2-b9e9-71aaf3188b3a" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115111Z:2ce52768-8140-4fd2-b9e9-71aaf3188b3a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "234ec168-7f21-4b3f-8f09-70e72f57984b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072158Z:234ec168-7f21-4b3f-8f09-70e72f57984b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:51:10 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:21:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "73" ], + "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-08T11:51:10.18Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-07-24T07:21:57.153Z\"}" } }, - "Update-AzMySqlServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/033d6ba4-926d-4e20-a9ce-b1d2dccce144?api-version=2017-12-01+2": { + "Update-AzMySqlServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c235c4a7-107f-4565-9b27-6860f50cc315?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/033d6ba4-926d-4e20-a9ce-b1d2dccce144?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c235c4a7-107f-4565-9b27-6860f50cc315?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "271", "272" ], - "x-ms-client-request-id": [ "b9ceed09-fb88-44be-8594-f01d14fad643", "b9ceed09-fb88-44be-8594-f01d14fad643" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "2a4715f1-e060-4949-aac1-6c623d3c8a0a", "2a4715f1-e060-4949-aac1-6c623d3c8a0a" ], "CommandName": [ "Az.MySql.internal\\Update-AzMySqlServer", "Az.MySql.internal\\Update-AzMySqlServer" ], "FullCommandName": [ "Update-AzMySqlServer_UpdateExpanded", "Update-AzMySqlServer_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "0757f879-4fe9-4c4a-ab92-486b3dcb39f1" ], + "x-ms-request-id": [ "048884bf-a694-4f64-8850-887b8f01e533" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11780" ], - "x-ms-correlation-request-id": [ "9ea7e860-b101-4b45-8875-3ef5b75ef81e" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115212Z:9ea7e860-b101-4b45-8875-3ef5b75ef81e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-correlation-request-id": [ "d004d695-dd96-473e-bfce-fe1018531b53" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072259Z:d004d695-dd96-473e-bfce-fe1018531b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:52:11 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:22:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"033d6ba4-926d-4e20-a9ce-b1d2dccce144\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:51:10.18Z\"}" + "Content": "{\"name\":\"c235c4a7-107f-4565-9b27-6860f50cc315\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:21:57.153Z\"}" } }, "Update-AzMySqlServer+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "271", "272", "273" ], - "x-ms-client-request-id": [ "b9ceed09-fb88-44be-8594-f01d14fad643", "b9ceed09-fb88-44be-8594-f01d14fad643", "b9ceed09-fb88-44be-8594-f01d14fad643" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "2a4715f1-e060-4949-aac1-6c623d3c8a0a", "2a4715f1-e060-4949-aac1-6c623d3c8a0a", "2a4715f1-e060-4949-aac1-6c623d3c8a0a" ], "CommandName": [ "Az.MySql.internal\\Update-AzMySqlServer", "Az.MySql.internal\\Update-AzMySqlServer", "Az.MySql.internal\\Update-AzMySqlServer" ], "FullCommandName": [ "Update-AzMySqlServer_UpdateExpanded", "Update-AzMySqlServer_UpdateExpanded", "Update-AzMySqlServer_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,21 +98,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "76ea4233-8da7-4551-b534-b92e45df9975" ], + "x-ms-request-id": [ "4179e142-8a1f-45f6-8f0d-4891079e665d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11779" ], - "x-ms-correlation-request-id": [ "5865a5bf-63f0-4a36-ba67-3c9182f7b73f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115212Z:5865a5bf-63f0-4a36-ba67-3c9182f7b73f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-correlation-request-id": [ "1261ba4e-a1e8-4654-ae00-2511fe8622b9" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072259Z:1261ba4e-a1e8-4654-ae00-2511fe8622b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:52:11 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:22:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "908" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Update-AzMySqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+1": { @@ -128,12 +121,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "274" ], - "x-ms-client-request-id": [ "54281b54-29dd-4c3d-b4dc-493626556a57" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "81329e4a-ed7c-4881-8b5e-8e8d26077abf" ], "CommandName": [ "Get-AzMySqlServer" ], "FullCommandName": [ "Get-AzMySqlServer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,21 +137,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "54406262-42c3-41de-b027-874ce2933f4f" ], + "x-ms-request-id": [ "33d25678-64cc-4d4f-a973-fe0f6a270430" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11778" ], - "x-ms-correlation-request-id": [ "a88a7494-9660-4af0-9b53-deb605138d40" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115213Z:a88a7494-9660-4af0-9b53-deb605138d40" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-correlation-request-id": [ "5db37c3d-c6a9-4ba5-8571-7544b8e5bf02" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072300Z:5db37c3d-c6a9-4ba5-8571-7544b8e5bf02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:52:12 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:22:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "908" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } }, "Update-AzMySqlServer+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+2": { @@ -167,13 +160,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"storageProfile\": {\n \"backupRetentionDays\": 23\n }\n }\n}", "Headers": { - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "5f015b86-b3f3-4465-b38f-be3f66d4662f" ], - "CommandName": [ "Az.MySql.internal\\Update-AzMySqlServer" ], - "FullCommandName": [ "Update-AzMySqlServer_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -185,38 +171,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/118d8824-a806-4c61-974c-82178013b2ef?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/764ecc56-a76f-47d1-bc51-0ab7fc8c90c2?api-version=2017-12-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/118d8824-a806-4c61-974c-82178013b2ef?api-version=2017-12-01" ], - "x-ms-request-id": [ "118d8824-a806-4c61-974c-82178013b2ef" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/764ecc56-a76f-47d1-bc51-0ab7fc8c90c2?api-version=2017-12-01" ], + "x-ms-request-id": [ "764ecc56-a76f-47d1-bc51-0ab7fc8c90c2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], - "x-ms-correlation-request-id": [ "b6bfd26f-e5a9-4a4b-a8e3-f67f6525505f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115215Z:b6bfd26f-e5a9-4a4b-a8e3-f67f6525505f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "65d4d118-2aea-4765-a245-8ba55db13abf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072302Z:65d4d118-2aea-4765-a245-8ba55db13abf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:52:14 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:23:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "74" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-04-08T11:52:14.357Z\"}" + "Content": "{\"operation\":\"UpsertElasticServer\",\"startTime\":\"2020-07-24T07:23:01.107Z\"}" } }, - "Update-AzMySqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/118d8824-a806-4c61-974c-82178013b2ef?api-version=2017-12-01+3": { + "Update-AzMySqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/764ecc56-a76f-47d1-bc51-0ab7fc8c90c2?api-version=2017-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/118d8824-a806-4c61-974c-82178013b2ef?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/764ecc56-a76f-47d1-bc51-0ab7fc8c90c2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "275", "276" ], - "x-ms-client-request-id": [ "5f015b86-b3f3-4465-b38f-be3f66d4662f", "5f015b86-b3f3-4465-b38f-be3f66d4662f" ], + "x-ms-unique-id": [ "5", "6" ], + "x-ms-client-request-id": [ "d3aec7bc-3d96-45e1-8888-1b4cec6f9def", "d3aec7bc-3d96-45e1-8888-1b4cec6f9def" ], "CommandName": [ "Az.MySql.internal\\Update-AzMySqlServer", "Az.MySql.internal\\Update-AzMySqlServer" ], "FullCommandName": [ "Update-AzMySqlServer_UpdateViaIdentityExpanded", "Update-AzMySqlServer_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -228,21 +214,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "60" ], - "x-ms-request-id": [ "7f4f6841-da98-4bb0-9946-418ddd768c9a" ], + "x-ms-request-id": [ "db0c85d4-567d-4657-a589-49fc5618c26c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], - "x-ms-correlation-request-id": [ "799b3f29-750e-4b24-85a3-6c45e23328ec" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115316Z:799b3f29-750e-4b24-85a3-6c45e23328ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-correlation-request-id": [ "9055c673-2cd5-4416-a9a6-66e52fa88f6a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072403Z:9055c673-2cd5-4416-a9a6-66e52fa88f6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:53:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:24:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"118d8824-a806-4c61-974c-82178013b2ef\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:52:14.357Z\"}" + "Content": "{\"name\":\"764ecc56-a76f-47d1-bc51-0ab7fc8c90c2\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:23:01.107Z\"}" } }, "Update-AzMySqlServer+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01+4": { @@ -251,12 +237,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "275", "276", "277" ], - "x-ms-client-request-id": [ "5f015b86-b3f3-4465-b38f-be3f66d4662f", "5f015b86-b3f3-4465-b38f-be3f66d4662f", "5f015b86-b3f3-4465-b38f-be3f66d4662f" ], + "x-ms-unique-id": [ "5", "6", "7" ], + "x-ms-client-request-id": [ "d3aec7bc-3d96-45e1-8888-1b4cec6f9def", "d3aec7bc-3d96-45e1-8888-1b4cec6f9def", "d3aec7bc-3d96-45e1-8888-1b4cec6f9def" ], "CommandName": [ "Az.MySql.internal\\Update-AzMySqlServer", "Az.MySql.internal\\Update-AzMySqlServer", "Az.MySql.internal\\Update-AzMySqlServer" ], "FullCommandName": [ "Update-AzMySqlServer_UpdateViaIdentityExpanded", "Update-AzMySqlServer_UpdateViaIdentityExpanded", "Update-AzMySqlServer_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -267,21 +253,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d7349eab-e470-4759-9990-fc9df19a648f" ], + "x-ms-request-id": [ "07142761-eb4b-4287-a016-56d8f764262e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11776" ], - "x-ms-correlation-request-id": [ "509ed2d0-6248-453f-95e1-40869ea90568" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115316Z:509ed2d0-6248-453f-95e1-40869ea90568" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-correlation-request-id": [ "fbe2ac14-3746-41c2-b7d8-c9bae0f50a55" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072403Z:fbe2ac14-3746-41c2-b7d8-c9bae0f50a55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:53:16 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:24:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "909" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-04-08T11:03:09.983+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" + "Content": "{\"sku\":{\"name\":\"GP_Gen5_4\",\"tier\":\"GeneralPurpose\",\"family\":\"Gen5\",\"capacity\":4},\"properties\":{\"administratorLogin\":\"mysql_test\",\"storageProfile\":{\"storageMB\":5120,\"backupRetentionDays\":23,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Disabled\"},\"version\":\"5.7\",\"sslEnforcement\":\"Disabled\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"userVisibleState\":\"Ready\",\"fullyQualifiedDomainName\":\"mysql-test-100.mysql.database.azure.com\",\"earliestRestoreDate\":\"2020-07-24T03:52:43.253+00:00\",\"replicationRole\":\"Master\",\"masterServerId\":\"\",\"replicaCapacity\":5,\"byokEnforcement\":\"Disabled\",\"privateEndpointConnections\":[],\"infrastructureEncryption\":\"Disabled\",\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100\",\"name\":\"mysql-test-100\",\"type\":\"Microsoft.DBforMySQL/servers\"}" } } } \ No newline at end of file diff --git a/src/MySql/test/Update-AzMySqlVirtualNetworkRule.Recording.json b/src/MySql/test/Update-AzMySqlVirtualNetworkRule.Recording.json index 1ae3b8a3d405..a037614c5052 100644 --- a/src/MySql/test/Update-AzMySqlVirtualNetworkRule.Recording.json +++ b/src/MySql/test/Update-AzMySqlVirtualNetworkRule.Recording.json @@ -5,13 +5,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "278" ], - "x-ms-client-request-id": [ "138f611c-65b9-4e44-9ea4-dc354a0de1ba" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -23,38 +16,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/663c5937-ae04-4b5d-82f8-d4e128c94242?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/630106f5-1b26-4eda-a58c-cbaf968992b2?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/663c5937-ae04-4b5d-82f8-d4e128c94242?api-version=2017-12-01" ], - "x-ms-request-id": [ "663c5937-ae04-4b5d-82f8-d4e128c94242" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/630106f5-1b26-4eda-a58c-cbaf968992b2?api-version=2017-12-01" ], + "x-ms-request-id": [ "630106f5-1b26-4eda-a58c-cbaf968992b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], - "x-ms-correlation-request-id": [ "e091a0b6-7ff7-445c-a066-fab232f77408" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115319Z:e091a0b6-7ff7-445c-a066-fab232f77408" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "d355ff99-65bf-4eab-b3c4-735d62475f33" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072722Z:d355ff99-65bf-4eab-b3c4-735d62475f33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:53:18 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:27:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:53:17.817Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T07:27:21.587Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/663c5937-ae04-4b5d-82f8-d4e128c94242?api-version=2017-12-01+2": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/630106f5-1b26-4eda-a58c-cbaf968992b2?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/663c5937-ae04-4b5d-82f8-d4e128c94242?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/630106f5-1b26-4eda-a58c-cbaf968992b2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "278", "279" ], - "x-ms-client-request-id": [ "138f611c-65b9-4e44-9ea4-dc354a0de1ba", "138f611c-65b9-4e44-9ea4-dc354a0de1ba" ], + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "a7269d29-0f0e-49e2-b586-52c97a25f2df", "a7269d29-0f0e-49e2-b586-52c97a25f2df" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,21 +59,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "79aec1d5-8ba6-4d73-b542-2b3161010236" ], + "x-ms-request-id": [ "a12f9302-8ec5-479a-980b-48ffe04cca15" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11775" ], - "x-ms-correlation-request-id": [ "9180f01b-cad1-42ac-b4e6-ab2e9dfa03ed" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115349Z:9180f01b-cad1-42ac-b4e6-ab2e9dfa03ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "35e64c69-5a17-4091-ae9d-18e915b4e46c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072753Z:35e64c69-5a17-4091-ae9d-18e915b4e46c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:53:49 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:27:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"663c5937-ae04-4b5d-82f8-d4e128c94242\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:53:17.817Z\"}" + "Content": "{\"name\":\"630106f5-1b26-4eda-a58c-cbaf968992b2\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:27:21.587Z\"}" } }, "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -89,12 +82,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "278", "279", "280" ], - "x-ms-client-request-id": [ "138f611c-65b9-4e44-9ea4-dc354a0de1ba", "138f611c-65b9-4e44-9ea4-dc354a0de1ba", "138f611c-65b9-4e44-9ea4-dc354a0de1ba" ], + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "a7269d29-0f0e-49e2-b586-52c97a25f2df", "a7269d29-0f0e-49e2-b586-52c97a25f2df", "a7269d29-0f0e-49e2-b586-52c97a25f2df" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +98,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5d092505-7b0d-4591-8c6d-0fec829f9d6d" ], + "x-ms-request-id": [ "65e7ccf3-f28f-40e4-bdd9-54a73b8a9a65" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11774" ], - "x-ms-correlation-request-id": [ "3fdd1fc5-c9f2-411c-bbfe-dc4808c69bd0" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115349Z:3fdd1fc5-c9f2-411c-bbfe-dc4808c69bd0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "e9a55077-bcdd-4bb0-88ec-c6fa828f68a8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072753Z:e9a55077-bcdd-4bb0-88ec-c6fa828f68a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:53:49 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:27:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -128,13 +121,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "47767870-93c0-419a-8113-1afbbba43de6" ], - "CommandName": [ "Update-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "Update-AzMySqlVirtualNetworkRule_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -146,38 +132,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/66aac467-7c85-4335-ace0-f71e1007c477?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/4643d496-aa9a-4edc-b014-679e5e1aeae4?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/66aac467-7c85-4335-ace0-f71e1007c477?api-version=2017-12-01" ], - "x-ms-request-id": [ "66aac467-7c85-4335-ace0-f71e1007c477" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4643d496-aa9a-4edc-b014-679e5e1aeae4?api-version=2017-12-01" ], + "x-ms-request-id": [ "4643d496-aa9a-4edc-b014-679e5e1aeae4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], - "x-ms-correlation-request-id": [ "4123b34a-4476-4043-b7a9-27d739c5b398" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115351Z:4123b34a-4476-4043-b7a9-27d739c5b398" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "ee10868c-7402-4b4c-aa9b-9a2ffcdb6ef5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072755Z:ee10868c-7402-4b4c-aa9b-9a2ffcdb6ef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:53:51 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:27:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:53:50.473Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T07:27:54.073Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/66aac467-7c85-4335-ace0-f71e1007c477?api-version=2017-12-01+5": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4643d496-aa9a-4edc-b014-679e5e1aeae4?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/66aac467-7c85-4335-ace0-f71e1007c477?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/4643d496-aa9a-4edc-b014-679e5e1aeae4?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "281", "282" ], - "x-ms-client-request-id": [ "47767870-93c0-419a-8113-1afbbba43de6", "47767870-93c0-419a-8113-1afbbba43de6" ], + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "85bb2f0f-b2bd-43a1-a946-fa44ebf54efb", "85bb2f0f-b2bd-43a1-a946-fa44ebf54efb" ], "CommandName": [ "Update-AzMySqlVirtualNetworkRule", "Update-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzMySqlVirtualNetworkRule_UpdateExpanded", "Update-AzMySqlVirtualNetworkRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -189,21 +175,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "fb263c88-93e1-450d-9264-4bcfd7b0f874" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], + "x-ms-request-id": [ "2c9a0380-26bb-4ad2-82f7-baf2ce4dd5e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "3e25cd33-918b-459a-9f95-b55d9c5f8a8b" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115421Z:3e25cd33-918b-459a-9f95-b55d9c5f8a8b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "2f04dbfa-5acb-4e7e-917a-2f64b5bfa240" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072825Z:2f04dbfa-5acb-4e7e-917a-2f64b5bfa240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:54:21 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:28:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"66aac467-7c85-4335-ace0-f71e1007c477\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:53:50.473Z\"}" + "Content": "{\"name\":\"4643d496-aa9a-4edc-b014-679e5e1aeae4\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:27:54.073Z\"}" } }, "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+6": { @@ -212,12 +198,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "281", "282", "283" ], - "x-ms-client-request-id": [ "47767870-93c0-419a-8113-1afbbba43de6", "47767870-93c0-419a-8113-1afbbba43de6", "47767870-93c0-419a-8113-1afbbba43de6" ], + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "85bb2f0f-b2bd-43a1-a946-fa44ebf54efb", "85bb2f0f-b2bd-43a1-a946-fa44ebf54efb", "85bb2f0f-b2bd-43a1-a946-fa44ebf54efb" ], "CommandName": [ "Update-AzMySqlVirtualNetworkRule", "Update-AzMySqlVirtualNetworkRule", "Update-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzMySqlVirtualNetworkRule_UpdateExpanded", "Update-AzMySqlVirtualNetworkRule_UpdateExpanded", "Update-AzMySqlVirtualNetworkRule_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -228,14 +214,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d065672e-25a1-4a3a-a95a-308cc2c75916" ], + "x-ms-request-id": [ "23422aa6-d404-429c-9616-2eb3f69a9f55" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], - "x-ms-correlation-request-id": [ "73864673-1f71-486c-bb6a-bd23a03c1fd5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115422Z:73864673-1f71-486c-bb6a-bd23a03c1fd5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "a0708390-e4d0-45cd-a4da-07ab53234074" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072826Z:a0708390-e4d0-45cd-a4da-07ab53234074" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:54:22 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:28:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -251,12 +237,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "a470537f-3348-4d7c-a6fe-612ebc969e0f" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "4c4ed391-2e85-45bf-a74c-93f54b3fb2b9" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -267,38 +253,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b59771c0-7b7f-416a-b69b-3dd4944034cf?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a629bc60-9141-4a73-b3c8-109e5b583c22?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b59771c0-7b7f-416a-b69b-3dd4944034cf?api-version=2017-12-01" ], - "x-ms-request-id": [ "b59771c0-7b7f-416a-b69b-3dd4944034cf" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a629bc60-9141-4a73-b3c8-109e5b583c22?api-version=2017-12-01" ], + "x-ms-request-id": [ "a629bc60-9141-4a73-b3c8-109e5b583c22" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14980" ], - "x-ms-correlation-request-id": [ "d517af4f-70b7-4a3c-9bb9-fc938887eae1" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115424Z:d517af4f-70b7-4a3c-9bb9-fc938887eae1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "687eff4e-6759-4923-b9af-0cbfab59434b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072827Z:687eff4e-6759-4923-b9af-0cbfab59434b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:54:23 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:28:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "87" ], + "Content-Length": [ "88" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:54:23.54Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T07:28:26.463Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b59771c0-7b7f-416a-b69b-3dd4944034cf?api-version=2017-12-01+8": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a629bc60-9141-4a73-b3c8-109e5b583c22?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b59771c0-7b7f-416a-b69b-3dd4944034cf?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/a629bc60-9141-4a73-b3c8-109e5b583c22?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "284", "285" ], - "x-ms-client-request-id": [ "a470537f-3348-4d7c-a6fe-612ebc969e0f", "a470537f-3348-4d7c-a6fe-612ebc969e0f" ], + "x-ms-unique-id": [ "7", "8" ], + "x-ms-client-request-id": [ "4c4ed391-2e85-45bf-a74c-93f54b3fb2b9", "4c4ed391-2e85-45bf-a74c-93f54b3fb2b9" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -310,35 +296,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "ad5d5b1e-d63f-44fa-bf5f-1d25c0a708c8" ], + "x-ms-request-id": [ "12f9161b-ea25-4201-930f-eed66afe6820" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], - "x-ms-correlation-request-id": [ "ccf03afb-1224-472d-86cd-7b6b5c8964e9" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115439Z:ccf03afb-1224-472d-86cd-7b6b5c8964e9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "165f32de-dd92-4b9f-b730-4ec98386c6ec" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072843Z:165f32de-dd92-4b9f-b730-4ec98386c6ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:54:39 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:28:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "106" ], + "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"b59771c0-7b7f-416a-b69b-3dd4944034cf\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:54:23.54Z\"}" + "Content": "{\"name\":\"a629bc60-9141-4a73-b3c8-109e5b583c22\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:28:26.463Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b59771c0-7b7f-416a-b69b-3dd4944034cf?api-version=2017-12-01+9": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a629bc60-9141-4a73-b3c8-109e5b583c22?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b59771c0-7b7f-416a-b69b-3dd4944034cf?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/a629bc60-9141-4a73-b3c8-109e5b583c22?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "284", "285", "286" ], - "x-ms-client-request-id": [ "a470537f-3348-4d7c-a6fe-612ebc969e0f", "a470537f-3348-4d7c-a6fe-612ebc969e0f", "a470537f-3348-4d7c-a6fe-612ebc969e0f" ], + "x-ms-unique-id": [ "7", "8", "9" ], + "x-ms-client-request-id": [ "4c4ed391-2e85-45bf-a74c-93f54b3fb2b9", "4c4ed391-2e85-45bf-a74c-93f54b3fb2b9", "4c4ed391-2e85-45bf-a74c-93f54b3fb2b9" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -349,14 +335,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e2610970-1104-4c4c-9993-3222c680ee39" ], + "x-ms-request-id": [ "de7f12ff-852f-47c7-865f-07163e70b7c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], - "x-ms-correlation-request-id": [ "c15a5898-eec7-4815-bbea-d76e622b763f" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115440Z:c15a5898-eec7-4815-bbea-d76e622b763f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "ea1f1beb-59f2-4432-88b6-c0f90e431a08" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072843Z:ea1f1beb-59f2-4432-88b6-c0f90e431a08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:54:40 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:28:43 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -371,13 +357,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet1\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "287" ], - "x-ms-client-request-id": [ "3713a3e6-b195-4dc7-bc14-6b8462a800ce" ], - "CommandName": [ "New-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -389,38 +368,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d0fbefaa-b633-4bc6-82db-b0f7b2393683?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/d1087740-15b7-4fbe-bd3b-cd12fb123e2d?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d0fbefaa-b633-4bc6-82db-b0f7b2393683?api-version=2017-12-01" ], - "x-ms-request-id": [ "d0fbefaa-b633-4bc6-82db-b0f7b2393683" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d1087740-15b7-4fbe-bd3b-cd12fb123e2d?api-version=2017-12-01" ], + "x-ms-request-id": [ "d1087740-15b7-4fbe-bd3b-cd12fb123e2d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], - "x-ms-correlation-request-id": [ "8eaf0402-ae9a-4be4-a5d8-8b87df1a6d29" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115442Z:8eaf0402-ae9a-4be4-a5d8-8b87df1a6d29" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "b57dcbd4-7cd7-4870-81f1-e8c02ccd4a11" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072845Z:b57dcbd4-7cd7-4870-81f1-e8c02ccd4a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:54:41 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:28:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:54:40.897Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T07:28:43.823Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d0fbefaa-b633-4bc6-82db-b0f7b2393683?api-version=2017-12-01+2": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d1087740-15b7-4fbe-bd3b-cd12fb123e2d?api-version=2017-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d0fbefaa-b633-4bc6-82db-b0f7b2393683?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/d1087740-15b7-4fbe-bd3b-cd12fb123e2d?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "287", "288" ], - "x-ms-client-request-id": [ "3713a3e6-b195-4dc7-bc14-6b8462a800ce", "3713a3e6-b195-4dc7-bc14-6b8462a800ce" ], + "x-ms-unique-id": [ "10", "11" ], + "x-ms-client-request-id": [ "c0ef821c-fa5a-48f7-9076-87bf63b9a8a1", "c0ef821c-fa5a-48f7-9076-87bf63b9a8a1" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -432,21 +411,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "381e8e90-5f32-42d0-861d-8855e0f47fb6" ], + "x-ms-request-id": [ "9e706d9b-31b6-47ab-9c93-29600c8392a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], - "x-ms-correlation-request-id": [ "baf3c36c-4b04-472b-81ad-857f66e4a3b9" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115512Z:baf3c36c-4b04-472b-81ad-857f66e4a3b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "60c36781-795f-4683-881a-e86523ea08ea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072915Z:60c36781-795f-4683-881a-e86523ea08ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:55:12 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:29:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"d0fbefaa-b633-4bc6-82db-b0f7b2393683\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:54:40.897Z\"}" + "Content": "{\"name\":\"d1087740-15b7-4fbe-bd3b-cd12fb123e2d\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:28:43.823Z\"}" } }, "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+3": { @@ -455,12 +434,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "287", "288", "289" ], - "x-ms-client-request-id": [ "3713a3e6-b195-4dc7-bc14-6b8462a800ce", "3713a3e6-b195-4dc7-bc14-6b8462a800ce", "3713a3e6-b195-4dc7-bc14-6b8462a800ce" ], + "x-ms-unique-id": [ "10", "11", "12" ], + "x-ms-client-request-id": [ "c0ef821c-fa5a-48f7-9076-87bf63b9a8a1", "c0ef821c-fa5a-48f7-9076-87bf63b9a8a1", "c0ef821c-fa5a-48f7-9076-87bf63b9a8a1" ], "CommandName": [ "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule", "New-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded", "New-AzMySqlVirtualNetworkRule_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -471,14 +450,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9cde7b5d-2068-4196-aec6-c2a65e95ed54" ], + "x-ms-request-id": [ "6e774e54-860b-48bf-bfad-e594cc80155b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11769" ], - "x-ms-correlation-request-id": [ "f63ea64c-ade1-421f-a4af-ae11a2857acc" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115512Z:f63ea64c-ade1-421f-a4af-ae11a2857acc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "93e578af-a046-4360-8ccd-44af0eb8f20c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072915Z:93e578af-a046-4360-8ccd-44af0eb8f20c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:55:12 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:29:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -494,13 +473,6 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": "{\n \"properties\": {\n \"virtualNetworkSubnetId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.Network/virtualNetworks/MySqlVNet/subnets/MysqlSubnet2\"\n }\n}", "Headers": { - "x-ms-unique-id": [ "290" ], - "x-ms-client-request-id": [ "a60f6452-f700-4785-bfaf-58abf23bc208" ], - "CommandName": [ "Update-AzMySqlVirtualNetworkRule" ], - "FullCommandName": [ "Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -512,38 +484,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/67fb0e5a-8466-43e0-bed0-539bb88b6f18?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/444b75d7-e999-40ab-8ab2-b92e9ea1e3a2?api-version=2017-12-01" ], "Retry-After": [ "30" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/67fb0e5a-8466-43e0-bed0-539bb88b6f18?api-version=2017-12-01" ], - "x-ms-request-id": [ "67fb0e5a-8466-43e0-bed0-539bb88b6f18" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/444b75d7-e999-40ab-8ab2-b92e9ea1e3a2?api-version=2017-12-01" ], + "x-ms-request-id": [ "444b75d7-e999-40ab-8ab2-b92e9ea1e3a2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], - "x-ms-correlation-request-id": [ "d4385700-9b2b-4d0e-8854-62eea769eee8" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115514Z:d4385700-9b2b-4d0e-8854-62eea769eee8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-correlation-request-id": [ "08c44b1b-70ea-4023-ab02-6e22b3755c4e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072917Z:08c44b1b-70ea-4023-ab02-6e22b3755c4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:55:13 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:29:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "90" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:55:13.023Z\"}" + "Content": "{\"operation\":\"UpsertElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T07:29:16.323Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/67fb0e5a-8466-43e0-bed0-539bb88b6f18?api-version=2017-12-01+5": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/444b75d7-e999-40ab-8ab2-b92e9ea1e3a2?api-version=2017-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/67fb0e5a-8466-43e0-bed0-539bb88b6f18?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/444b75d7-e999-40ab-8ab2-b92e9ea1e3a2?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "290", "291" ], - "x-ms-client-request-id": [ "a60f6452-f700-4785-bfaf-58abf23bc208", "a60f6452-f700-4785-bfaf-58abf23bc208" ], + "x-ms-unique-id": [ "13", "14" ], + "x-ms-client-request-id": [ "635f4676-fd6d-442c-936e-4cc6beeaf230", "635f4676-fd6d-442c-936e-4cc6beeaf230" ], "CommandName": [ "Update-AzMySqlVirtualNetworkRule", "Update-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded", "Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -555,21 +527,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "x-ms-request-id": [ "5f7e0680-294a-445d-8e9d-b5d9373b8258" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11768" ], + "x-ms-request-id": [ "ba21e7ab-745a-4eb6-8387-d5f9c2c53bf8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "82c6e2d3-1731-47dd-9114-6d202ec27e99" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115545Z:82c6e2d3-1731-47dd-9114-6d202ec27e99" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "0ba82f4c-76e9-461b-877c-b15499df9779" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072947Z:0ba82f4c-76e9-461b-877c-b15499df9779" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:55:45 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:29:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "107" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"67fb0e5a-8466-43e0-bed0-539bb88b6f18\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:55:13.023Z\"}" + "Content": "{\"name\":\"444b75d7-e999-40ab-8ab2-b92e9ea1e3a2\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:29:16.323Z\"}" } }, "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01+6": { @@ -578,12 +550,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "290", "291", "292" ], - "x-ms-client-request-id": [ "a60f6452-f700-4785-bfaf-58abf23bc208", "a60f6452-f700-4785-bfaf-58abf23bc208", "a60f6452-f700-4785-bfaf-58abf23bc208" ], + "x-ms-unique-id": [ "13", "14", "15" ], + "x-ms-client-request-id": [ "635f4676-fd6d-442c-936e-4cc6beeaf230", "635f4676-fd6d-442c-936e-4cc6beeaf230", "635f4676-fd6d-442c-936e-4cc6beeaf230" ], "CommandName": [ "Update-AzMySqlVirtualNetworkRule", "Update-AzMySqlVirtualNetworkRule", "Update-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded", "Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded", "Update-AzMySqlVirtualNetworkRule_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -594,14 +566,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8e121010-555a-47e2-904a-b6088ef9280b" ], + "x-ms-request-id": [ "7ce92d2f-f0df-4449-85bd-d8354c81bc26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11767" ], - "x-ms-correlation-request-id": [ "4cde86b9-1f60-4764-bc1c-05ad9d256376" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115546Z:4cde86b9-1f60-4764-bc1c-05ad9d256376" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "fa860df2-d0ad-4886-9b8b-6d45da779ec4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072948Z:fa860df2-d0ad-4886-9b8b-6d45da779ec4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:55:46 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:29:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -617,12 +589,12 @@ "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MySqlTest/providers/Microsoft.DBforMySQL/servers/mysql-test-100/virtualNetworkRules/mysqlvnet?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "34b2e34e-e70a-475a-a3da-544f430f8ae5" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "f3a356cb-6e6b-4294-ac27-ec2c3afb02c2" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -633,38 +605,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/70d93dba-1048-4bbb-bd42-65ebfe2d4b18?api-version=2017-12-01" ], + "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fffe0835-0317-4a30-a4b6-cbad1f09f1aa?api-version=2017-12-01" ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/70d93dba-1048-4bbb-bd42-65ebfe2d4b18?api-version=2017-12-01" ], - "x-ms-request-id": [ "70d93dba-1048-4bbb-bd42-65ebfe2d4b18" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fffe0835-0317-4a30-a4b6-cbad1f09f1aa?api-version=2017-12-01" ], + "x-ms-request-id": [ "fffe0835-0317-4a30-a4b6-cbad1f09f1aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14979" ], - "x-ms-correlation-request-id": [ "2e3e6b35-410c-4730-a662-c784626dd3d7" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115548Z:2e3e6b35-410c-4730-a662-c784626dd3d7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-correlation-request-id": [ "fcf734d0-7bdd-4b97-96f4-e01ea34fcc71" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T072950Z:fcf734d0-7bdd-4b97-96f4-e01ea34fcc71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:55:48 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:29:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-04-08T11:55:47.32Z\"}" + "Content": "{\"operation\":\"DropElasticServerVnetFirewallRule\",\"startTime\":\"2020-07-24T07:29:48.65Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/70d93dba-1048-4bbb-bd42-65ebfe2d4b18?api-version=2017-12-01+8": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fffe0835-0317-4a30-a4b6-cbad1f09f1aa?api-version=2017-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/70d93dba-1048-4bbb-bd42-65ebfe2d4b18?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fffe0835-0317-4a30-a4b6-cbad1f09f1aa?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "293", "294" ], - "x-ms-client-request-id": [ "34b2e34e-e70a-475a-a3da-544f430f8ae5", "34b2e34e-e70a-475a-a3da-544f430f8ae5" ], + "x-ms-unique-id": [ "16", "17" ], + "x-ms-client-request-id": [ "f3a356cb-6e6b-4294-ac27-ec2c3afb02c2", "f3a356cb-6e6b-4294-ac27-ec2c3afb02c2" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -676,35 +648,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], - "x-ms-request-id": [ "a1a64d5c-6bf3-49cd-be73-a105825e8f4d" ], + "x-ms-request-id": [ "58782c94-9ffc-47f0-be4f-c50c16a32ecf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11766" ], - "x-ms-correlation-request-id": [ "a3da57e4-0dc1-4dd4-bf8c-e47b151f44d5" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115604Z:a3da57e4-0dc1-4dd4-bf8c-e47b151f44d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "ff7b05c2-174e-41aa-b737-321b5aff38f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T073006Z:ff7b05c2-174e-41aa-b737-321b5aff38f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:56:03 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:30:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "106" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"70d93dba-1048-4bbb-bd42-65ebfe2d4b18\",\"status\":\"Succeeded\",\"startTime\":\"2020-04-08T11:55:47.32Z\"}" + "Content": "{\"name\":\"fffe0835-0317-4a30-a4b6-cbad1f09f1aa\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-24T07:29:48.65Z\"}" } }, - "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/70d93dba-1048-4bbb-bd42-65ebfe2d4b18?api-version=2017-12-01+9": { + "Update-AzMySqlVirtualNetworkRule+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fffe0835-0317-4a30-a4b6-cbad1f09f1aa?api-version=2017-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/70d93dba-1048-4bbb-bd42-65ebfe2d4b18?api-version=2017-12-01", + "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fffe0835-0317-4a30-a4b6-cbad1f09f1aa?api-version=2017-12-01", "Content": null, "Headers": { - "x-ms-unique-id": [ "293", "294", "295" ], - "x-ms-client-request-id": [ "34b2e34e-e70a-475a-a3da-544f430f8ae5", "34b2e34e-e70a-475a-a3da-544f430f8ae5", "34b2e34e-e70a-475a-a3da-544f430f8ae5" ], + "x-ms-unique-id": [ "16", "17", "18" ], + "x-ms-client-request-id": [ "f3a356cb-6e6b-4294-ac27-ec2c3afb02c2", "f3a356cb-6e6b-4294-ac27-ec2c3afb02c2", "f3a356cb-6e6b-4294-ac27-ec2c3afb02c2" ], "CommandName": [ "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule", "Remove-AzMySqlVirtualNetworkRule" ], "FullCommandName": [ "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete", "Remove-AzMySqlVirtualNetworkRule_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "PSVersion/v6.2.3", "PSVersion/v6.2.3", "PSVersion/v6.2.3" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -715,14 +687,14 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f1ae368d-69b1-4e49-b148-ef834220fb42" ], + "x-ms-request-id": [ "2f1a1908-6e5a-4a46-b540-40d4894a7e6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11765" ], - "x-ms-correlation-request-id": [ "c5836071-ce7d-4cdf-afe1-cf55fb1433ac" ], - "x-ms-routing-request-id": [ "KOREASOUTH:20200408T115604Z:c5836071-ce7d-4cdf-afe1-cf55fb1433ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "887f1202-85fa-44ae-ab19-57f75ca2c83d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20200724T073006Z:887f1202-85fa-44ae-ab19-57f75ca2c83d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 08 Apr 2020 11:56:03 GMT" ] + "Date": [ "Fri, 24 Jul 2020 07:30:05 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/MySql/test/env.json b/src/MySql/test/env.json index db7454a9584f..96f52865f9e6 100644 --- a/src/MySql/test/env.json +++ b/src/MySql/test/env.json @@ -1,15 +1,15 @@ { - "restoreName": "mysql-test-100-restore", "serverName": "mysql-test-100", - "restoreName2": "mysql-test-100-restore-2", "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", "Sku": "GP_Gen5_4", "location": "eastus", + "VNetName": "mysqlvnet", "serverName2": "mysql-test-100-2", "firewallRuleName2": "mysqlrule02", - "replicaName": "mysql-test-100-replica", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "restoreName2": "mysql-test-100-restore-2", "resourceGroup": "MySqlTest", - "VNetName": "mysqlvnet", + "restoreName": "mysql-test-100-restore", + "replicaName": "mysql-test-100-replica", "firewallRuleName": "mysqlrule01" } diff --git a/src/MySql/test/readme.md b/src/MySql/test/readme.md index 1969200c6a09..7c752b4c8c43 100644 --- a/src/MySql/test/readme.md +++ b/src/MySql/test/readme.md @@ -1,5 +1,5 @@ # 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. +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 diff --git a/src/MySql/test/utils.ps1 b/src/MySql/test/utils.ps1 index e8cdee13aa26..fb18b13447ff 100644 --- a/src/MySql/test/utils.ps1 +++ b/src/MySql/test/utils.ps1 @@ -32,8 +32,9 @@ function setupEnv() { # Create the test Vnet write-host "Deploy Vnet template" New-AzDeployment -Mode Incremental -TemplateFile .\test\deployment-templates\virtual-network\template.json -TemplateParameterFile .\test\deployment-templates\virtual-network\parameters.json -Name vn -ResourceGroupName $resourceGroup + #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - $password = 'Pa88word!' | ConvertTo-SecureString -AsPlainText -Force + $password = 'Pasword01!!2020' | ConvertTo-SecureString -AsPlainText -Force $serverName = "mysql-test-100" $env.Add("serverName", $serverName) $Sku = "GP_Gen5_4" diff --git a/src/Relay/Relay/help/Get-AzRelayAuthorizationRule.md b/src/Relay/Relay/help/Get-AzRelayAuthorizationRule.md index 797fcad07ac5..f938ca175226 100644 --- a/src/Relay/Relay/help/Get-AzRelayAuthorizationRule.md +++ b/src/Relay/Relay/help/Get-AzRelayAuthorizationRule.md @@ -35,8 +35,8 @@ The **Get-AzRelayAuthorizationRule** cmdlet gets the description of the specifie ## EXAMPLES -### Example 1 - Namespace -``` +### Example 1: Namespace +```powershell PS C:\> Get-AzRelayNamespaceAuthorizationRule -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -Name AuthoRule1 Rights : {Listen, Send} @@ -48,8 +48,8 @@ Id : /subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Defa Returns the specified authorization rule description for a specified namespace. -### Example 2 - WcfRelay -``` +### Example 2: WcfRelay +```powershell PS C:\>Get-AzWcfRelayAuthorizationRule -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -WcfRelay TestWCFRelay1 -Name AuthoRule1 Rights : {Listen, Send} @@ -61,8 +61,8 @@ Id : /subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Defa Returns the specified authorization rule description for a given WcfRelay. -### Example 3 - HybridConnection -``` +### Example 3: HybridConnection +```powershell PS C:\> Get-AzRelayHybridConnectionAuthorizationRule -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -HybridConnections TestHybridConnection -Name AuthoRule1 Rights : {Listen, Send} diff --git a/src/Relay/Relay/help/Get-AzRelayKey.md b/src/Relay/Relay/help/Get-AzRelayKey.md index a8a7a922af0b..3f377b0ec774 100644 --- a/src/Relay/Relay/help/Get-AzRelayKey.md +++ b/src/Relay/Relay/help/Get-AzRelayKey.md @@ -35,8 +35,8 @@ The **Get-AzRelayKey** cmdlet returns the primary and secondary connection strin ## EXAMPLES -### Example 1 - Namespace -``` +### Example 1: Namespace +```powershell PS C:\> Get-AzRelayKey -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -Name AuthoRule1 PrimaryConnectionString : Endpoint=sb://testnamespace-relay1.servicebus.windows.net/;SharedAccessKeyName=AuthoRule1;SharedAccessKey=############################################ @@ -46,8 +46,8 @@ SecondaryKey : ############################################ KeyName : AuthoRule1 ``` -### Example 2 - WcfRelay -``` +### Example 2: WcfRelay +```powershell PS C:\> Get-AzRelayKey -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -WcfRelay TestWCFRelay1 -Name AuthoRule1 PrimaryConnectionString : Endpoint=sb://testnamespace-relay1.servicebus.windows.net/;SharedAccessKeyName=AuthoRule1;SharedAccessKey=############################################;EntityPath=TestWCFRelay1 @@ -57,8 +57,8 @@ SecondaryKey : ############################################ KeyName : AuthoRule1 ``` -### Example 3 - HybridConnection -``` +### Example 3: HybridConnection +```powershell PS C:\> Get-AzRelayKey -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -HybridConnection TestHybridConnection -Name AuthoRule1 PrimaryConnectionString : Endpoint=sb://testnamespace-relay1.servicebus.windows.net/;SharedAccessKeyName=AuthoRule1;SharedAccessKey=############################################;EntityPath=TestHybridConnection diff --git a/src/Relay/Relay/help/New-AzRelayAuthorizationRule.md b/src/Relay/Relay/help/New-AzRelayAuthorizationRule.md index 9959c2736982..71711e6e12b5 100644 --- a/src/Relay/Relay/help/New-AzRelayAuthorizationRule.md +++ b/src/Relay/Relay/help/New-AzRelayAuthorizationRule.md @@ -37,8 +37,8 @@ The **New-AzRelayAuthorizationRule** cmdlet creates a new authorization rule for ## EXAMPLES -### Example 1 - Namespace -``` +### Example 1: Namespace +```powershell PS C:\>New-AzRelayAuthorizationRule -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -Name AuthoRule1 -Rights "Listen" Rights : {Listen} @@ -49,8 +49,8 @@ Id : /subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Defa Creates `AuthoRule1` with **Listen** rights for the namespace `TestNameSpace-Relay1`. -### Example 2 - WcfRelay -``` +### Example 2: WcfRelay +```powershell PS C:\>New-AzRelayAuthorizationRule -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -WcfRelay TestWCFRelay1 -Name AuthoRule1 -Rights "Listen" Rights : {Listen} @@ -61,8 +61,8 @@ Id : /subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Defa Creates authorization rule `AuthoRule1` with **Listen** rights for the WcfRelay `TestWCFRelay1`. -### Example 3 - HybridConnection -``` +### Example 3: HybridConnection +```powershell PS C:\>New-AzRelayAuthorizationRule -ResourceGroupName Default-ServiceBus-WestUS -Namespace TestNameSpace-Relay1 -HybridConnection TestHybridConnection -Name AuthoRule1 -Rights "Listen" Rights : {Listen} diff --git a/src/Resources/ResourceManager/ResourceManager.csproj b/src/Resources/ResourceManager/ResourceManager.csproj index 8e9c4523486a..d0d365261216 100644 --- a/src/Resources/ResourceManager/ResourceManager.csproj +++ b/src/Resources/ResourceManager/ResourceManager.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/Resources/Resources.Test/Resources.Test.csproj b/src/Resources/Resources.Test/Resources.Test.csproj index 09f39f1822f4..0658bef8cd04 100644 --- a/src/Resources/Resources.Test/Resources.Test.csproj +++ b/src/Resources/Resources.Test/Resources.Test.csproj @@ -31,7 +31,7 @@ - + diff --git a/src/Resources/Resources.Test/ScenarioTests/PolicyAliasTests.cs b/src/Resources/Resources.Test/ScenarioTests/PolicyAliasTests.cs index 605e5eefba5a..f9ae03965a6c 100644 --- a/src/Resources/Resources.Test/ScenarioTests/PolicyAliasTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/PolicyAliasTests.cs @@ -441,6 +441,27 @@ public void TestGetAzureRmPolicyAliasAllParameters() this.VerifyListCallPatternAndReset(); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureRmPolicyAliasWithPathMetadata() + { + var providers = new ProviderListBuilder(); + var provider = providers.AddProvider("Provider1"); + var resourceTypes = provider.AddResourceType("ResourceType1"); + var alias = resourceTypes.AddAlias("Alias1"); + alias.AddDefaultAliasPathMetadata(AliasPathAttributes.Modifiable, AliasPathTokenType.String); + alias.AddAliasPath("properties.alias1", new List { "2020-01-01" }, new AliasPathMetadata(AliasPathAttributes.Modifiable, AliasPathTokenType.Object)); + + var listResult = providers.List; + this.SetupAliasListResult(listResult); + + this.commandRuntimeMock + .Setup(m => m.WriteObject(It.IsAny(), It.IsAny())) + .Callback((object obj, bool listAll) => { this.AssertResult(obj, listResult, 1); }); + + this.cmdlet.ExecuteCmdlet(); + this.VerifyListCallPatternAndReset(); + } /// /// Helper method that sets up the expected result of the alias list cmdlet /// @@ -497,6 +518,9 @@ private void AssertResult(object resultObject, IEnumerable expectedPro var expectedAlias = expectedResourceType.Aliases.SingleOrDefault(item => item.Name.EqualsInsensitively(actualAlias.Name)); Assert.NotNull(expectedAlias); + Assert.Equal(expectedAlias.DefaultMetadata?.Attributes, actualAlias.DefaultMetadata?.Attributes); + Assert.Equal(expectedAlias.DefaultMetadata?.Type, actualAlias.DefaultMetadata?.Type); + // verify paths collection if (actualAlias.Paths == null) { @@ -509,6 +533,9 @@ private void AssertResult(object resultObject, IEnumerable expectedPro var expectedPath = expectedAlias.Paths.SingleOrDefault(item => item.Path.EqualsInsensitively(actualPath.Path)); Assert.NotNull(expectedPath); + Assert.Equal(actualPath.Metadata?.Attributes, expectedPath.Metadata?.Attributes); + Assert.Equal(actualPath.Metadata?.Type, expectedPath.Metadata?.Type); + // verify API version collection if (actualPath.ApiVersions == null) { diff --git a/src/Resources/Resources.Test/ScenarioTests/ProviderListBuilder.cs b/src/Resources/Resources.Test/ScenarioTests/ProviderListBuilder.cs index 8ffd0ac76b3e..6de6a575c0c7 100644 --- a/src/Resources/Resources.Test/ScenarioTests/ProviderListBuilder.cs +++ b/src/Resources/Resources.Test/ScenarioTests/ProviderListBuilder.cs @@ -91,21 +91,28 @@ public class AliasBuilder public static IList DefaultApiVersions { get; } = new List { "2018-01-01", "2016-01-01" }; private string Name { get; } private List Paths { get; } = new List(); + private AliasPathMetadata DefaultAliasPathMetadata { get; set; } public AliasBuilder(string name) { this.Name = name; } - public Alias Alias => new Alias + public Alias Alias => new Alias(defaultMetadata: this.DefaultAliasPathMetadata) { Name = this.Name, Paths = this.Paths }; - public AliasPath AddAliasPath(string path, IEnumerable apiVersions = null) + public AliasPathMetadata AddDefaultAliasPathMetadata(string attributes, string type) { - var rv = new AliasPath + this.DefaultAliasPathMetadata = new AliasPathMetadata(attributes, type); + return this.DefaultAliasPathMetadata; + } + + public AliasPath AddAliasPath(string path, IEnumerable apiVersions = null, AliasPathMetadata metadata= null) + { + var rv = new AliasPath(metadata: metadata) { Path = path, ApiVersions = apiVersions?.ToList() ?? AliasBuilder.DefaultApiVersions diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index fae1ed79163d..6642ba5321f9 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated `Get-AzPolicyAlias` response to include information indicating whether the alias is modifiable by Azure Policy. * Created new cmdlet `Set-AzRoleAssignment` * Added `Get-AzDeploymentManagementGroupWhatIfResult` for getting ARM template What-If results at management Group scope * Added `Get-AzTenantWhatIfResult` new cmdlet for getting ARM template What-If results at tenant scope diff --git a/src/Resources/Resources/ManagementGroups/GetAzureRmManagementGroup.cs b/src/Resources/Resources/ManagementGroups/GetAzureRmManagementGroup.cs index f16141650f4f..18729c76f284 100644 --- a/src/Resources/Resources/ManagementGroups/GetAzureRmManagementGroup.cs +++ b/src/Resources/Resources/ManagementGroups/GetAzureRmManagementGroup.cs @@ -18,6 +18,7 @@ using Microsoft.Azure.Commands.Resources.Models.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Resources.ManagementGroups { @@ -30,6 +31,8 @@ public class GetAzureRmManagementGroup : AzureManagementGroupsCmdletBase /// /// Get-AzManagementGroup Cmdlet /// + [Alias("GroupId")] + [CmdletParameterBreakingChange("GroupName", ReplaceMentCmdletParameterName = "GroupId", ChangeDescription = "We will repleace GroupName with GroupId to make it more clear.")] [Parameter(ParameterSetName = Constants.ParameterSetNames.GetParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.GroupName, Position = 0)] public string GroupName { get; set; } diff --git a/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroup.cs b/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroup.cs index 2e10eafb18bf..d0945fd4e024 100644 --- a/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroup.cs +++ b/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroup.cs @@ -17,6 +17,8 @@ using Microsoft.Azure.Commands.Resources.Models.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; + using Newtonsoft.Json; using Newtonsoft.Json.Linq; @@ -28,6 +30,8 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroup", DefaultParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSManagementGroup))] public class NewAzureRmManagementGroup : AzureManagementGroupsCmdletBase { + [Alias("GroupId")] + [CmdletParameterBreakingChange("GroupName", ReplaceMentCmdletParameterName = "GroupId", ChangeDescription = "We will repleace GroupName with GroupId to make it more clear.")] [Parameter(ParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.GroupName, Position = 0)] [Parameter(ParameterSetName = Constants.ParameterSetNames.ParentGroupParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.ParentObject)] diff --git a/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs b/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs index 76f67ee42ee6..919e292f5f71 100644 --- a/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs +++ b/src/Resources/Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs @@ -17,6 +17,7 @@ using Microsoft.Azure.Commands.Resources.ManagementGroups.Common; using Microsoft.Azure.Management.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Resources.ManagementGroups { @@ -26,6 +27,8 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroupSubscription",DefaultParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet,SupportsShouldProcess = true), OutputType(typeof(bool))] public class NewAzureRmManagementGroupSubscription : AzureManagementGroupsCmdletBase { + [Alias("GroupId")] + [CmdletParameterBreakingChange("GroupName", ReplaceMentCmdletParameterName = "GroupId", ChangeDescription = "We will repleace GroupName with GroupId to make it more clear.")] [Parameter(ParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.GroupName, Position = 0)] [ValidateNotNullOrEmpty] diff --git a/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs b/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs index 46a2f6c43472..a04206f8c8c7 100644 --- a/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs +++ b/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs @@ -17,6 +17,7 @@ using Microsoft.Azure.Commands.Resources.Models.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Resources.ManagementGroups { @@ -32,6 +33,8 @@ public class RemoveAzureRmManagementGroup : AzureManagementGroupsCmdletBase [ValidateNotNullOrEmpty] public PSManagementGroup InputObject { get; set; } + [Alias("GroupId")] + [CmdletParameterBreakingChange("GroupName", ReplaceMentCmdletParameterName = "GroupId", ChangeDescription = "We will repleace GroupName with GroupId to make it more clear.")] [Parameter(ParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.GroupName, Position = 0)] [ValidateNotNullOrEmpty] diff --git a/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs b/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs index 0d0051a80360..09e1a74bd09a 100644 --- a/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs +++ b/src/Resources/Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs @@ -17,6 +17,7 @@ using Microsoft.Azure.Commands.Resources.ManagementGroups.Common; using Microsoft.Azure.Management.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Resources.ManagementGroups { @@ -26,6 +27,8 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroupSubscription",DefaultParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet,SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmManagementGroupSubscription : AzureManagementGroupsCmdletBase { + [Alias("GroupId")] + [CmdletParameterBreakingChange("GroupName", ReplaceMentCmdletParameterName = "GroupId", ChangeDescription = "We will repleace GroupName with GroupId to make it more clear.")] [Parameter(ParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.GroupName, Position = 0)] [ValidateNotNullOrEmpty] diff --git a/src/Resources/Resources/ManagementGroups/UpdateAzureRmManagementGroup.cs b/src/Resources/Resources/ManagementGroups/UpdateAzureRmManagementGroup.cs index 7912e504abc4..558c4a2ea9ee 100644 --- a/src/Resources/Resources/ManagementGroups/UpdateAzureRmManagementGroup.cs +++ b/src/Resources/Resources/ManagementGroups/UpdateAzureRmManagementGroup.cs @@ -17,6 +17,7 @@ using Microsoft.Azure.Commands.Resources.Models.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups; using Microsoft.Azure.Management.ManagementGroups.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Resources.ManagementGroups { @@ -30,6 +31,8 @@ public class UpdateAzureRmManagementGroup : AzureManagementGroupsCmdletBase [ValidateNotNullOrEmpty] public PSManagementGroup InputObject { get; set; } + [Alias("GroupId")] + [CmdletParameterBreakingChange("GroupName", ReplaceMentCmdletParameterName = "GroupId", ChangeDescription = "We will repleace GroupName with GroupId to make it more clear.")] [Parameter(ParameterSetName = Constants.ParameterSetNames.ParentGroupParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.InputObject, ValueFromPipeline = false)] [Parameter(ParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.GroupName, Position = 0)] diff --git a/src/Resources/Resources/help/Get-AzManagementGroup.md b/src/Resources/Resources/help/Get-AzManagementGroup.md index 21422710fbc1..fe5b4cc3b4b1 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroup.md +++ b/src/Resources/Resources/help/Get-AzManagementGroup.md @@ -161,7 +161,7 @@ Management Group Id ```yaml Type: System.String Parameter Sets: GetOperation -Aliases: +Aliases: GroupId Required: True Position: 0 diff --git a/src/Resources/Resources/help/New-AzManagementGroup.md b/src/Resources/Resources/help/New-AzManagementGroup.md index 432ce8eba7fc..2b571dd66c0f 100644 --- a/src/Resources/Resources/help/New-AzManagementGroup.md +++ b/src/Resources/Resources/help/New-AzManagementGroup.md @@ -136,7 +136,7 @@ Management Group Id ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: GroupId Required: True Position: 0 diff --git a/src/Resources/Resources/help/New-AzManagementGroupSubscription.md b/src/Resources/Resources/help/New-AzManagementGroupSubscription.md index c956b1ed3b7a..a49fcbd9c5af 100644 --- a/src/Resources/Resources/help/New-AzManagementGroupSubscription.md +++ b/src/Resources/Resources/help/New-AzManagementGroupSubscription.md @@ -50,7 +50,7 @@ Management Group Id ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: GroupId Required: True Position: 0 diff --git a/src/Resources/Resources/help/Remove-AzManagementGroup.md b/src/Resources/Resources/help/Remove-AzManagementGroup.md index c037e864a906..d7ed5e381132 100644 --- a/src/Resources/Resources/help/Remove-AzManagementGroup.md +++ b/src/Resources/Resources/help/Remove-AzManagementGroup.md @@ -62,7 +62,7 @@ Management Group Id ```yaml Type: System.String Parameter Sets: GroupOperations -Aliases: +Aliases: GroupId Required: True Position: 0 diff --git a/src/Resources/Resources/help/Remove-AzManagementGroupSubscription.md b/src/Resources/Resources/help/Remove-AzManagementGroupSubscription.md index 67e02d872fbe..de28874f8db4 100644 --- a/src/Resources/Resources/help/Remove-AzManagementGroupSubscription.md +++ b/src/Resources/Resources/help/Remove-AzManagementGroupSubscription.md @@ -50,7 +50,7 @@ Management Group Id ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: GroupId Required: True Position: 0 diff --git a/src/Resources/Resources/help/Update-AzManagementGroup.md b/src/Resources/Resources/help/Update-AzManagementGroup.md index 0aa26677df51..ddb97ab8cf3e 100644 --- a/src/Resources/Resources/help/Update-AzManagementGroup.md +++ b/src/Resources/Resources/help/Update-AzManagementGroup.md @@ -145,7 +145,7 @@ Management Group Id ```yaml Type: System.String Parameter Sets: GroupOperations, ParentGroupObject -Aliases: +Aliases: GroupId Required: True Position: Named diff --git a/src/Resources/Tags/Tags.csproj b/src/Resources/Tags/Tags.csproj index d5bdca6bbc94..e1df939fe791 100644 --- a/src/Resources/Tags/Tags.csproj +++ b/src/Resources/Tags/Tags.csproj @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs index 709df276a106..85fd606e1a96 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.cs @@ -65,5 +65,12 @@ public void TestStorageBlobServiceProperties() { TestController.NewInstance.RunPsTest(_logger, "Test-StorageBlobServiceProperties"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestStorageBlobORS() + { + TestController.NewInstance.RunPsTest(_logger, "Test-StorageBlobORS"); + } } } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 index 6239637cbba7..a0ffec98af60 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 @@ -437,3 +437,107 @@ function Test-StorageBlobServiceProperties +<# +.SYNOPSIS +Test StorageAccount Object Replication +.DESCRIPTION +SmokeTest +#> +function Test-StorageBlobORS +{ + # Setup + $rgname = Get-StorageManagementTestResourceName; + + try + { + # Test + $stoname1 = 'sto' + $rgname + 'src'; + $stoname2 = 'sto' + $rgname + 'dest'; + $stotype = 'Standard_LRS'; + $loc = Get-ProviderLocation ResourceManagement; + $kind = 'StorageV2' + + Write-Verbose "RGName: $rgname | Loc: $loc" + New-AzResourceGroup -Name $rgname -Location $loc; + + $loc = Get-ProviderLocation_Canary ResourceManagement; + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname1 -Location $loc -Type $stotype -Kind $kind + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname2 -Location $loc -Type $stotype -Kind $kind + + # Enable Blob Enable Changefeed and versioning + Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname1 -EnableChangeFeed $true -IsVersioningEnabled $true + Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname2 -EnableChangeFeed $true -IsVersioningEnabled $true + $property1 = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname1 + Assert-AreEqual $true $property1.ChangeFeed.Enabled + Assert-AreEqual $true $property1.IsVersioningEnabled + $property2 = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname2 + Assert-AreEqual $true $property2.ChangeFeed.Enabled + Assert-AreEqual $true $property2.IsVersioningEnabled + + # create containers + Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname1 | New-AzRmStorageContainer -name src + Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname2 | New-AzRmStorageContainer -name dest + Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname1 | New-AzRmStorageContainer -name src1 + Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname2 | New-AzRmStorageContainer -name dest1 + + # create rules + $minCreationTime = "2019-01-01T16:00:00Z" + $rule1 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src1 -DestinationContainer dest1 + $rule2 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src -DestinationContainer dest -MinCreationTime $minCreationTime -PrefixMatch a,abc,dd #-Tag t1,t2,t3 + + # set policy to dest account + $destPolicy = Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId default -SourceAccount $stoname1 -Rule $rule1,$rule2 + $policyID = $destPolicy.PolicyId + Assert-AreEqual $stoname1 $destPolicy.SourceAccount + Assert-AreEqual $stoname2 $destPolicy.DestinationAccount + Assert-AreEqual 2 $destPolicy.Rules.Count + Assert-AreEqual src1 $destPolicy.Rules[0].SourceContainer + Assert-AreEqual dest1 $destPolicy.Rules[0].DestinationContainer + Assert-AreEqual $null $destPolicy.Rules[0].Filters + Assert-AreEqual src $destPolicy.Rules[1].SourceContainer + Assert-AreEqual dest $destPolicy.Rules[1].DestinationContainer + Assert-AreEqual 3 $destPolicy.Rules[1].Filters.PrefixMatch.Count + Assert-AreEqual $minCreationTime ($destPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") + $destPolicy = Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId $destPolicy.PolicyId + Assert-AreEqual $policyID $destPolicy.PolicyId + Assert-AreEqual $stoname1 $destPolicy.SourceAccount + Assert-AreEqual $stoname2 $destPolicy.DestinationAccount + Assert-AreEqual 2 $destPolicy.Rules.Count + Assert-AreEqual src1 $destPolicy.Rules[0].SourceContainer + Assert-AreEqual dest1 $destPolicy.Rules[0].DestinationContainer + Assert-AreEqual $null $destPolicy.Rules[0].Filters + Assert-AreEqual src $destPolicy.Rules[1].SourceContainer + Assert-AreEqual dest $destPolicy.Rules[1].DestinationContainer + Assert-AreEqual 3 $destPolicy.Rules[1].Filters.PrefixMatch.Count + Assert-AreEqual $minCreationTime ($destPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") + + #Set policy to source account + Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 -InputObject $destPolicy + $srcPolicy = Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 + Assert-AreEqual $policyID $srcPolicy.PolicyId + Assert-AreEqual $stoname1 $srcPolicy.SourceAccount + Assert-AreEqual $stoname2 $srcPolicy.DestinationAccount + Assert-AreEqual 2 $srcPolicy.Rules.Count + Assert-AreEqual src1 $srcPolicy.Rules[0].SourceContainer + Assert-AreEqual dest1 $srcPolicy.Rules[0].DestinationContainer + Assert-AreEqual $null $srcPolicy.Rules[0].Filters + Assert-AreEqual src $srcPolicy.Rules[1].SourceContainer + Assert-AreEqual dest $srcPolicy.Rules[1].DestinationContainer + Assert-AreEqual 3 $srcPolicy.Rules[1].Filters.PrefixMatch.Count + Assert-AreEqual $minCreationTime ($srcPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") + + #remove policies + Remove-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId $destPolicy.PolicyId + Remove-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 -PolicyId $srcPolicy.PolicyId + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname1; + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname2; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + + diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobORS.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobORS.json new file mode 100644 index 000000000000..032ca3aeddf9 --- /dev/null +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobORS.json @@ -0,0 +1,2391 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee265b3a-fb1b-45bd-a3db-e191d9bff0dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9a3d11a9-4cd8-4973-abb3-63b08a2254fd" + ], + "x-ms-correlation-request-id": [ + "9a3d11a9-4cd8-4973-abb3-63b08a2254fd" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162600Z:9a3d11a9-4cd8-4973-abb3-63b08a2254fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:26:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12336" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg5674?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTY3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61813212-e2fd-4921-b8d4-cbbb979a848b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "84e1638d-1deb-4761-b23b-7613078dc525" + ], + "x-ms-correlation-request-id": [ + "84e1638d-1deb-4761-b23b-7613078dc525" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162605Z:84e1638d-1deb-4761-b23b-7613078dc525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:26:04 GMT" + ], + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674\",\r\n \"name\": \"pstestrg5674\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stopstestrg5674src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9d28b47-99d6-45c3-8abf-1274298c14eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "84" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "45a1e0fc-79f5-43db-b61b-377a56ebfbc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c4af6b09-10c3-449c-8297-2c8596b3f95b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162615Z:c4af6b09-10c3-449c-8297-2c8596b3f95b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:26:15 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stopstestrg5674dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7fb8711-5bf7-40c1-8b21-c5698d3999a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "85" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1ba29118-7c53-40e1-8d82-c6c94c031efd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "1834c349-7890-424c-a029-1a44bea4f1de" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162701Z:1834c349-7890-424c-a029-1a44bea4f1de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:00 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab57e90e-480c-44a4-a568-822dd7015cb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "103" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/762d8b62-bf4a-481a-a629-abe46298dd18?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "762d8b62-bf4a-481a-a629-abe46298dd18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "0bf3f3a2-99ea-47fc-abe5-60bc1d1d5725" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162622Z:0bf3f3a2-99ea-47fc-abe5-60bc1d1d5725" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:26:21 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/762d8b62-bf4a-481a-a629-abe46298dd18?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zLzc2MmQ4YjYyLWJmNGEtNDgxYS1hNjI5LWFiZTQ2Mjk4ZGQxOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a08d26b3-1921-4cc7-9ae1-7fa90195dc8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "22ad4f25-bd48-487f-bf38-174b415b2e10" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162700Z:22ad4f25-bd48-487f-bf38-174b415b2e10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:26:59 GMT" + ], + "Content-Length": [ + "1289" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src\",\r\n \"name\": \"stopstestrg5674src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:26:21.8150913Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92e5acfc-042a-4973-b440-3bd6cae87fec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "285dc774-12c8-42ea-97c9-85e74c2f2bd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "d9c83940-15ab-428c-a32b-1ca3b53588cc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162701Z:d9c83940-15ab-428c-a32b-1ca3b53588cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:00 GMT" + ], + "Content-Length": [ + "1289" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src\",\r\n \"name\": \"stopstestrg5674src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:26:21.8150913Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4647d79-2f2b-49c6-9398-472a2a66c881" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "58b2ee27-f492-4fac-9ce2-56def906848e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "681cbf84-4ef4-4332-b6fa-64f9691d98d0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162731Z:681cbf84-4ef4-4332-b6fa-64f9691d98d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:31 GMT" + ], + "Content-Length": [ + "1289" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src\",\r\n \"name\": \"stopstestrg5674src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:26:21.8150913Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7cc3284-b291-4c82-ab06-b55f1df7da26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca297219-1229-47ae-a22d-43b08baf373d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "7a735da2-61fd-4883-8fc8-73b7a6fdf96b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162733Z:7a735da2-61fd-4883-8fc8-73b7a6fdf96b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:33 GMT" + ], + "Content-Length": [ + "1289" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src\",\r\n \"name\": \"stopstestrg5674src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:26:21.8776173Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:26:21.8150913Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f76ff927-aefd-4e87-ab26-5b99f4e45f54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "103" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/a6e2fb68-d219-432d-a391-8ac6f8a04aed?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "a6e2fb68-d219-432d-a391-8ac6f8a04aed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "db645522-3734-471c-b76a-824189cd041b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162707Z:db645522-3734-471c-b76a-824189cd041b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:06 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/a6e2fb68-d219-432d-a391-8ac6f8a04aed?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zL2E2ZTJmYjY4LWQyMTktNDMyZC1hMzkxLThhYzZmOGEwNGFlZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "99b2573a-58b2-454f-bbe5-930bf93d8409" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "cc63ad8b-4548-410f-acf9-a0c0ca7e738a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162724Z:cc63ad8b-4548-410f-acf9-a0c0ca7e738a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:24 GMT" + ], + "Content-Length": [ + "1297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest\",\r\n \"name\": \"stopstestrg5674dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:27:07.0378092Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3d022fe-3691-409d-9d9c-9f852e1550eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7d695cdc-5c35-43b6-9a8c-4b0091095548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "f5c69f20-c751-4c36-8a8a-6b5779f8861b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162725Z:f5c69f20-c751-4c36-8a8a-6b5779f8861b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:25 GMT" + ], + "Content-Length": [ + "1297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest\",\r\n \"name\": \"stopstestrg5674dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:27:07.0378092Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32fcfe42-ba9d-42f1-8243-ad9d500b8ab2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31b1b53b-5b55-4182-bd60-a9c14f595875" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "7040df36-284a-4115-b75d-d03aed105fc7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162732Z:7040df36-284a-4115-b75d-d03aed105fc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:32 GMT" + ], + "Content-Length": [ + "1297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest\",\r\n \"name\": \"stopstestrg5674dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:27:07.0378092Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16c6890b-9885-4d96-815f-bc21a5cba7fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "58e38acc-1e2e-4d61-936a-a08ab0f1cdd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "b027aba8-08c6-47c3-8471-de96ecec3aaa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162735Z:b027aba8-08c6-47c3-8471-de96ecec3aaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:34 GMT" + ], + "Content-Length": [ + "1297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest\",\r\n \"name\": \"stopstestrg5674dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T16:27:07.1003359Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T16:27:07.0378092Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg5674dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg5674dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg5674dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5674dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5674dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg5674dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af2b6470-c83e-4e26-8f5d-87c87ecf08e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1836fc61-2537-4894-aa4c-767fb606d4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "128d296b-6639-4bc3-8be8-2ab606b2c66a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162725Z:128d296b-6639-4bc3-8be8-2ab606b2c66a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:25 GMT" + ], + "Content-Length": [ + "374" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "169c1a97-e04c-487a-87cb-ba5f59c944d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f53d22c-dd96-44cb-8939-803032e8ebbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "a5d64664-67f6-4f0d-a43a-3e095fdb10f8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162730Z:a5d64664-67f6-4f0d-a43a-3e095fdb10f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:30 GMT" + ], + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true,\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5abe4b0-4181-4aa5-9fe1-90d64f653311" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9bd32473-7b7b-405a-a8ec-e8664aefb612" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "508614a0-a8f6-459b-ad3b-15ff5ee47a0c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162728Z:508614a0-a8f6-459b-ad3b-15ff5ee47a0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:28 GMT" + ], + "Content-Length": [ + "383" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b602f833-ff80-4e11-bd96-00d2e3726fde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "20b2d285-58c7-4645-a887-134ea2bffb3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "05553532-d162-4a65-b7dd-c1b7a7dde27e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162729Z:05553532-d162-4a65-b7dd-c1b7a7dde27e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:28 GMT" + ], + "Content-Length": [ + "375" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa55aae6-ca90-4b08-9add-012004e2a9d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c90334e8-6c3f-4040-9ca9-e28e1a3f8be4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "5bc8a131-c963-4597-8364-25be3135d804" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162731Z:5bc8a131-c963-4597-8364-25be3135d804" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:31 GMT" + ], + "Content-Length": [ + "432" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true,\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6a8db15-dfc1-49f5-b644-7e06ef0b67d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2a522296-f779-4d9e-a8cc-9bf56442d424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "ca17cf22-f04c-4345-b917-9e07c6efdd55" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162730Z:ca17cf22-f04c-4345-b917-9e07c6efdd55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:30 GMT" + ], + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default/containers/src?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6782dba3-63de-4948-bd6d-7caa4aaaef48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7E223105DDFF8\"" + ], + "x-ms-request-id": [ + "4599fe92-bdf2-4e1c-9fdf-b43d82463f32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "cd0ba3d4-11c9-4fb1-a6ff-dc702d3cd76d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162732Z:cd0ba3d4-11c9-4fb1-a6ff-dc702d3cd76d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:32 GMT" + ], + "Content-Length": [ + "267" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default/containers/src\",\r\n \"name\": \"src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default/containers/dest?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e33f0cf-d8cd-4398-8c53-5ca4fd534323" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7E223110A60C7\"" + ], + "x-ms-request-id": [ + "a41ca2df-3074-4b06-851c-19e63fc6eabb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "cb4b9719-e303-4131-b5c7-5e3e426f2aec" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162733Z:cb4b9719-e303-4131-b5c7-5e3e426f2aec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:33 GMT" + ], + "Content-Length": [ + "270" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default/containers/dest\",\r\n \"name\": \"dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default/containers/src1?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYzE/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e311d129-6d58-4bcc-8412-ff74e3c832d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7E22311BEEA7F\"" + ], + "x-ms-request-id": [ + "37296174-053e-4812-92a5-0145f39bf9d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "9e53d563-ee0e-4b38-be60-1e72a0550fd1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162734Z:9e53d563-ee0e-4b38-be60-1e72a0550fd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:34 GMT" + ], + "Content-Length": [ + "269" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/blobServices/default/containers/src1\",\r\n \"name\": \"src1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default/containers/dest1?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b7138b6-c8b4-469a-9b2f-d54cdbbb6865" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7E223127DAB7B\"" + ], + "x-ms-request-id": [ + "0933beca-e95e-4a5a-932e-5c5018aa3c44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "219fbcb2-b0b7-4dab-8b6a-63e248b70d67" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162735Z:219fbcb2-b0b7-4dab-8b6a-63e248b70d67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:35 GMT" + ], + "Content-Length": [ + "272" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/blobServices/default/containers/dest1\",\r\n \"name\": \"dest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/objectReplicationPolicies/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"stopstestrg5674src\",\r\n \"destinationAccount\": \"stopstestrg5674dest\",\r\n \"rules\": [\r\n {\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0278272-f397-4270-a116-2f068cac8a19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "519" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "741e9854-626c-4a37-8f36-5240b1d70941" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "afe98c9d-22cf-43e3-8b4f-71897d835bf5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162737Z:afe98c9d-22cf-43e3-8b4f-71897d835bf5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:37 GMT" + ], + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/objectReplicationPolicies/d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"name\": \"d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"sourceAccount\": \"stopstestrg5674src\",\r\n \"destinationAccount\": \"stopstestrg5674dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"beb872c8-c001-469c-a70b-208d121eb829\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"4736b8a5-1cf4-4e03-85ad-b8589fc2caaf\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/objectReplicationPolicies/d17efd0d-1865-4ec8-ab52-3f39f5e69bd0?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9kMTdlZmQwZC0xODY1LTRlYzgtYWI1Mi0zZjM5ZjVlNjliZDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6382073-d0f7-45b2-9363-5b5d9f56444c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d75f4433-9ecc-4f3b-ba10-a42b1ed3c001" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "aea95e55-b671-4f41-b32c-cfd029245311" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162737Z:aea95e55-b671-4f41-b32c-cfd029245311" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:37 GMT" + ], + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/objectReplicationPolicies/d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"name\": \"d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"sourceAccount\": \"stopstestrg5674src\",\r\n \"destinationAccount\": \"stopstestrg5674dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"beb872c8-c001-469c-a70b-208d121eb829\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"4736b8a5-1cf4-4e03-85ad-b8589fc2caaf\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/objectReplicationPolicies/d17efd0d-1865-4ec8-ab52-3f39f5e69bd0?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2QxN2VmZDBkLTE4NjUtNGVjOC1hYjUyLTNmMzlmNWU2OWJkMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"stopstestrg5674src\",\r\n \"destinationAccount\": \"stopstestrg5674dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"beb872c8-c001-469c-a70b-208d121eb829\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"4736b8a5-1cf4-4e03-85ad-b8589fc2caaf\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a4dd69a-def8-47d9-a89f-ebb3d186c265" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "637" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f136d202-5712-4a84-bc75-25aee84f618d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "4697bbb2-7bbf-4bf7-8433-fc867a1a6f39" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162739Z:4697bbb2-7bbf-4bf7-8433-fc867a1a6f39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:38 GMT" + ], + "Content-Length": [ + "823" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/objectReplicationPolicies/d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"name\": \"d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"enabledTime\": \"2020-04-16T16:27:39.0443111Z\",\r\n \"sourceAccount\": \"stopstestrg5674src\",\r\n \"destinationAccount\": \"stopstestrg5674dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"beb872c8-c001-469c-a70b-208d121eb829\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"4736b8a5-1cf4-4e03-85ad-b8589fc2caaf\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/objectReplicationPolicies?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe104be5-7410-4017-adfb-7871c4c5afda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0c0286cd-f27f-4070-bafc-6fe087e842f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "8eb58644-ea9b-46d4-9223-16ca6631d438" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162739Z:8eb58644-ea9b-46d4-9223-16ca6631d438" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:39 GMT" + ], + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"policyId\": \"d17efd0d-1865-4ec8-ab52-3f39f5e69bd0\",\r\n \"sourceAccount\": \"stopstestrg5674src\",\r\n \"destinationAccount\": \"stopstestrg5674dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"beb872c8-c001-469c-a70b-208d121eb829\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"4736b8a5-1cf4-4e03-85ad-b8589fc2caaf\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest/objectReplicationPolicies/d17efd0d-1865-4ec8-ab52-3f39f5e69bd0?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9kMTdlZmQwZC0xODY1LTRlYzgtYWI1Mi0zZjM5ZjVlNjliZDA/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f81eb768-b310-4f32-b1de-cc7daa609b3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "10c9f8ff-5720-4abf-8246-6020ba1c8a96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "054b8710-722b-435e-a55a-ee16f3c780d6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162740Z:054b8710-722b-435e-a55a-ee16f3c780d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:40 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src/objectReplicationPolicies/d17efd0d-1865-4ec8-ab52-3f39f5e69bd0?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2QxN2VmZDBkLTE4NjUtNGVjOC1hYjUyLTNmMzlmNWU2OWJkMD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "935d10ac-5850-4cc4-af81-43ecf5e91add" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b118bbba-c0bd-4fac-87c3-c53b4f18bc7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "b2276130-666e-4070-bb7b-f39b689fbe97" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162740Z:b2276130-666e-4070-bb7b-f39b689fbe97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:40 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674src?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NHNyYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "223483fd-35cc-4701-bef8-7bff30541e21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7bc3aeb4-6445-4523-aa4a-e3cc97fac32c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "12edba0d-5fea-492a-b7c7-c0e2b97c9602" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162744Z:12edba0d-5fea-492a-b7c7-c0e2b97c9602" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:44 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg5674/providers/Microsoft.Storage/storageAccounts/stopstestrg5674dest?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTY3NGRlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f4ea72a-b784-4c9d-a3de-25131658adcb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/15.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c0da44f6-9888-4d00-b68d-881f48cfb6e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "96afc49e-bb2d-439e-bf95-b3b1e1ce7eaf" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162747Z:96afc49e-bb2d-439e-bf95-b3b1e1ce7eaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:46 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg5674?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTY3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5f42160-ecc5-4fd8-a979-1aeec1ad01d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "0c6abbd8-5035-4924-902e-5d849739cea8" + ], + "x-ms-correlation-request-id": [ + "0c6abbd8-5035-4924-902e-5d849739cea8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162752Z:0c6abbd8-5035-4924-902e-5d849739cea8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:27:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTnpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "89458cbd-5b2f-4952-8690-88e4f39bde2f" + ], + "x-ms-correlation-request-id": [ + "89458cbd-5b2f-4952-8690-88e4f39bde2f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162808Z:89458cbd-5b2f-4952-8690-88e4f39bde2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:28:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTnpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a1fbc5c6-d821-408b-b894-3d2ae0b172f5" + ], + "x-ms-correlation-request-id": [ + "a1fbc5c6-d821-408b-b894-3d2ae0b172f5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162823Z:a1fbc5c6-d821-408b-b894-3d2ae0b172f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:28:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTnpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "2182c825-dbb8-43fa-bc43-cb9f3837e441" + ], + "x-ms-correlation-request-id": [ + "2182c825-dbb8-43fa-bc43-cb9f3837e441" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162838Z:2182c825-dbb8-43fa-bc43-cb9f3837e441" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:28:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTnpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "9b66c544-460c-4f61-9a7a-f5d028c51b02" + ], + "x-ms-correlation-request-id": [ + "9b66c544-460c-4f61-9a7a-f5d028c51b02" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200416T162839Z:9b66c544-460c-4f61-9a7a-f5d028c51b02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Apr 2020 16:28:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-StorageBlobORS": [ + "pstestrg5674" + ] + }, + "Variables": { + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" + } +} \ No newline at end of file diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index a3ef78085f20..a49ae1ee81eb 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -166,7 +166,9 @@ CmdletsToExport = 'Get-AzStorageAccount', 'Get-AzStorageAccountKey', 'Remove-AzDataLakeGen2Item', 'Update-AzDataLakeGen2Item', 'Set-AzDataLakeGen2ItemAclObject', 'Get-AzDataLakeGen2ItemContent', 'Invoke-AzStorageAccountFailover', - 'Get-AzStorageBlobQueryResult', 'New-AzStorageBlobQueryConfig' + 'Get-AzStorageBlobQueryResult', 'New-AzStorageBlobQueryConfig', + 'New-AzStorageObjectReplicationPolicyRule', 'Set-AzStorageObjectReplicationPolicy', + 'Get-AzStorageObjectReplicationPolicy', 'Remove-AzStorageObjectReplicationPolicy' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs b/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs index 08602a2bc99a..cc950092e023 100644 --- a/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs +++ b/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs @@ -83,6 +83,23 @@ public class UpdateAzStorageBlobServicePropertyCommand : StorageBlobBaseCmdlet [ValidateNotNull] public string DefaultServiceVersion { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "Enable Change Feed logging for the storage account by set to $true, disable Change Feed logging by set to $false.")] + [ValidateNotNullOrEmpty] + public bool EnableChangeFeed + { + get + { + return enableChangeFeed is null ? false : enableChangeFeed.Value; + } + set + { + enableChangeFeed = value; + } + } + private bool? enableChangeFeed = null; + [Parameter( Mandatory = false, HelpMessage = "Gets or sets versioning is enabled if set to true.")] @@ -128,6 +145,11 @@ public override void ExecuteCmdlet() { serviceProperties.DefaultServiceVersion = this.DefaultServiceVersion; } + if (enableChangeFeed != null) + { + serviceProperties.ChangeFeed = new ChangeFeed(); + serviceProperties.ChangeFeed.Enabled = enableChangeFeed; + } if (isVersioningEnabled != null) { serviceProperties.IsVersioningEnabled = isVersioningEnabled; diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 970b54f2c2b4..d96400df2db2 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -25,7 +25,14 @@ - `Start-AzStorageBlobCopy` - `Get-AzDataLakeGen2Item` * Fixed [#12592]: Fix download blob fail when related sub directory not exist. - - `Get-AzStorageBlobContent` + - `Get-AzStorageBlobContent` +* Support Set/Get/Remove Object Replication Policy on Storage accounts + - `New-AzStorageObjectReplicationPolicyRule` + - `Set-AzStorageObjectReplicationPolicy` + - `Get-AzStorageObjectReplicationPolicy` + - `Remove-AzStorageObjectReplicationPolicy` +* Support enable/disable Changefeed on Blob Service of a Storage account + - `Update-AzStorageBlobServiceProperty` ## Version 2.4.0 * Supported create container/blob Sas token with new permission x,t diff --git a/src/Storage/Storage.Management/Models/PSObjectReplicationPolicy.cs b/src/Storage/Storage.Management/Models/PSObjectReplicationPolicy.cs new file mode 100644 index 000000000000..36596fb5aa35 --- /dev/null +++ b/src/Storage/Storage.Management/Models/PSObjectReplicationPolicy.cs @@ -0,0 +1,195 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Storage.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Management.Storage.Models +{ + /// + /// Wrapper of SDK type ObjectReplicationPolicy + /// + public class PSObjectReplicationPolicy + { + [Ps1Xml(Label = "ResourceGroupName", Target = ViewControl.Table, Position = 0)] + public string ResourceGroupName { get; } + [Ps1Xml(Label = "StorageAccountName", Target = ViewControl.Table, Position = 1)] + public string StorageAccountName { get; } + public string ResourceId { get; } + public string Name { get; } + public string Type { get; } + + [Ps1Xml(Label = "PolicyId", Target = ViewControl.Table, Position = 2)] + public string PolicyId { get; set; } + [Ps1Xml(Label = "EnabledTime", Target = ViewControl.Table, Position = 3)] + public DateTime? EnabledTime { get; } + [Ps1Xml(Label = "SourceAccount", Target = ViewControl.Table, Position = 4)] + public string SourceAccount { get; set; } + [Ps1Xml(Label = "DestinationAccount", Target = ViewControl.Table, Position = 5)] + public string DestinationAccount { get; set; } + [Ps1Xml(Label = "Rules", Target = ViewControl.Table, ScriptBlock = "if (($_.Rules -ne $null) -and ($_.Rules.Count -ne 0)) {'[' + $_.Rules[0].RuleId + ',...]'} else {$null}", Position = 6)] + public PSObjectReplicationPolicyRule[] Rules { get; set; } + + public PSObjectReplicationPolicy() + { } + + public PSObjectReplicationPolicy(ObjectReplicationPolicy policy, string ResourceGroupName, string StorageAccountName) + { + this.ResourceGroupName = ResourceGroupName; + this.StorageAccountName = StorageAccountName; + this.ResourceId = policy.Id; + this.Name = policy.Name; + this.Type = policy.Type; + this.PolicyId = policy.PolicyId; + this.EnabledTime = policy.EnabledTime; + this.SourceAccount = policy.SourceAccount; + this.DestinationAccount = policy.DestinationAccount; + this.Rules = PSObjectReplicationPolicyRule.GetPSObjectReplicationPolicyRules(policy.Rules); + } + + public ObjectReplicationPolicy ParseObjectReplicationPolicy() + { + ObjectReplicationPolicy policy = new ObjectReplicationPolicy() + { + SourceAccount = this.SourceAccount, + DestinationAccount = this.DestinationAccount, + Rules = PSObjectReplicationPolicyRule.ParseObjectReplicationPolicyRules(this.Rules) + }; + return policy; + } + + public static PSObjectReplicationPolicy[] GetPSObjectReplicationPolicies(IEnumerable policies, string ResourceGroupName, string StorageAccountName) + { + if (policies == null) + { + return null; + } + List pspolicies = new List(); + foreach (ObjectReplicationPolicy policy in policies) + { + pspolicies.Add(new PSObjectReplicationPolicy(policy, ResourceGroupName, StorageAccountName)); + } + return pspolicies.ToArray(); + } + } + + /// + /// Wrapper of SDK type ObjectReplicationPolicyRule + /// + public class PSObjectReplicationPolicyRule + { + [Ps1Xml(Label = "RuleId", Target = ViewControl.Table, Position = 0)] + public string RuleId { get; set; } + [Ps1Xml(Label = "SourceContainer", Target = ViewControl.Table, Position = 1)] + public string SourceContainer { get; set; } + [Ps1Xml(Label = "DestinationContainer", Target = ViewControl.Table, Position = 2)] + public string DestinationContainer { get; set; } + [Ps1Xml(Label = "Filter.PrefixMatch", Target = ViewControl.Table, ScriptBlock = "if (($_.Filter -ne $null) -and ($_.Filter.PrefixMatch -ne $null) -and ($_.Filter.PrefixMatch.Count -ne 0)) {'[' + ($_.Filter.PrefixMatch -join ', ') + ']'} else {$null}", Position = 3)] + public PSObjectReplicationPolicyFilter Filters { get; set; } + + public PSObjectReplicationPolicyRule() + { + } + + public PSObjectReplicationPolicyRule(ObjectReplicationPolicyRule rule) + { + this.RuleId = rule.RuleId; + this.SourceContainer = rule.SourceContainer; + this.DestinationContainer = rule.DestinationContainer; + this.Filters = rule.Filters is null ? null : new PSObjectReplicationPolicyFilter(rule.Filters); + } + + public ObjectReplicationPolicyRule ParseObjectReplicationPolicyRule() + { + ObjectReplicationPolicyRule rule = new ObjectReplicationPolicyRule(); + rule.RuleId = this.RuleId; + rule.SourceContainer = this.SourceContainer; + rule.DestinationContainer = this.DestinationContainer; + rule.Filters = this.Filters is null ? null : this.Filters.ParseObjectReplicationPolicyFilter(); + return rule; + } + + public static PSObjectReplicationPolicyRule[] GetPSObjectReplicationPolicyRules(IList rules) + { + if (rules == null) + { + return null; + } + List psrules = new List(); + foreach (ObjectReplicationPolicyRule rule in rules) + { + psrules.Add(new PSObjectReplicationPolicyRule(rule)); + } + return psrules.ToArray(); + } + + public static List ParseObjectReplicationPolicyRules(PSObjectReplicationPolicyRule[] psrules) + { + if (psrules == null) + { + return null; + } + List rules = new List(); + foreach (PSObjectReplicationPolicyRule psrule in psrules) + { + rules.Add(psrule.ParseObjectReplicationPolicyRule()); + } + return rules; + } + } + + /// + /// Wrapper of SDK type ObjectReplicationPolicyFilter + /// + public class PSObjectReplicationPolicyFilter + { + public string[] PrefixMatch { get; set; } + public DateTime? MinCreationTime; + + public PSObjectReplicationPolicyFilter() + { + } + + public PSObjectReplicationPolicyFilter(ObjectReplicationPolicyFilter filter) + { + if (filter != null) + { + this.PrefixMatch = filter.PrefixMatch is null ? null : new List(filter.PrefixMatch).ToArray(); + if (string.IsNullOrEmpty(filter.MinCreationTime)) + { + this.MinCreationTime = null; + } + else + { + if (filter.MinCreationTime.ToUpper()[filter.MinCreationTime.Length - 1] != 'Z') + { + filter.MinCreationTime = filter.MinCreationTime + "Z"; + } + this.MinCreationTime = Convert.ToDateTime(filter.MinCreationTime); + } + } + } + public ObjectReplicationPolicyFilter ParseObjectReplicationPolicyFilter() + { + return new ObjectReplicationPolicyFilter() + { + PrefixMatch = this.PrefixMatch is null ? null : new List(this.PrefixMatch), + //must be in format: 2020-02-19T16:05:00Z + MinCreationTime = this.MinCreationTime is null ? null : this.MinCreationTime.Value.ToUniversalTime().ToString("s") + "Z" + }; + } + } +} diff --git a/src/Storage/Storage.Management/Storage.Management.format.ps1xml b/src/Storage/Storage.Management/Storage.Management.format.ps1xml index 896ebdb73d8a..184b09f3b0af 100644 --- a/src/Storage/Storage.Management/Storage.Management.format.ps1xml +++ b/src/Storage/Storage.Management/Storage.Management.format.ps1xml @@ -407,5 +407,133 @@ + + Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy + + Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy + + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + + + + + Left + ResourceGroupName + + + Left + StorageAccountName + + + Left + PolicyId + + + Left + EnabledTime + + + Left + SourceAccount + + + Left + DestinationAccount + + + Left + if (($_.Rules -ne $null) -and ($_.Rules.Count -ne 0)) { if ($_.Rules.Count -eq 1) {'[' + $_.Rules[0].RuleId + ']'} else {'[' + $_.Rules[0].RuleId + ',...]'}} else {$null} + + + + + + + + Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule + + Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule + + + + + Left + + + + Left + + + + Left + + + + Left + + + + Left + + + + + + + + Left + RuleId + + + Left + SourceContainer + + + Left + DestinationContainer + + + Left + '{' + ($_.Filters.PrefixMatch -join ', ') + '}' + + + Left + $_.Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z" + + + + + + \ No newline at end of file diff --git a/src/Storage/Storage.Management/StorageAccount/GetAzStorageObjectReplicationPolicy.cs b/src/Storage/Storage.Management/StorageAccount/GetAzStorageObjectReplicationPolicy.cs new file mode 100644 index 000000000000..a1fc4963b498 --- /dev/null +++ b/src/Storage/Storage.Management/StorageAccount/GetAzStorageObjectReplicationPolicy.cs @@ -0,0 +1,101 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Management.Storage.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageObjectReplicationPolicy", DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSObjectReplicationPolicy))] + public class GetAzureStorageAccountObjectReplicationPolicyCommand : StorageAccountBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Object Replication Policy Id.")] + [ValidateNotNullOrEmpty] + public string PolicyId { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + if (!string.IsNullOrEmpty(PolicyId)) + { + ObjectReplicationPolicy policy = this.StorageClient.ObjectReplicationPolicies.Get( + this.ResourceGroupName, + this.StorageAccountName, + PolicyId); + + WriteObject(new PSObjectReplicationPolicy(policy, this.ResourceGroupName, this.StorageAccountName)); + } + else + { + IEnumerable policies = this.StorageClient.ObjectReplicationPolicies.List( + this.ResourceGroupName, + this.StorageAccountName); + WriteObject(PSObjectReplicationPolicy.GetPSObjectReplicationPolicies(policies, this.ResourceGroupName, this.StorageAccountName), true); + } + } + } +} diff --git a/src/Storage/Storage.Management/StorageAccount/NewAzStorageObjectReplicationPolicyRule.cs b/src/Storage/Storage.Management/StorageAccount/NewAzStorageObjectReplicationPolicyRule.cs new file mode 100644 index 000000000000..eb0772399840 --- /dev/null +++ b/src/Storage/Storage.Management/StorageAccount/NewAzStorageObjectReplicationPolicyRule.cs @@ -0,0 +1,84 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Management.Storage.Models; +using System; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageObjectReplicationPolicyRule"), OutputType(typeof(PSObjectReplicationPolicyRule))] + public class NewAzureStorageAccountObjectReplicationPolicyRuleCommand : StorageAccountBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The Source Container name to replicate from.")] + [ValidateNotNullOrEmpty] + public string SourceContainer { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The Destination Container name to replicate to.")] + [ValidateNotNullOrEmpty] + public string DestinationContainer { get; set; } + + [Parameter(Mandatory = false, + HelpMessage = "Filters the results to replicate only blobs whose names begin with the specified prefix.")] + [ValidateNotNullOrEmpty] + public string[] PrefixMatch { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Blobs created after the time will be replicated to the destination..")] + [ValidateNotNull] + public DateTime MinCreationTime + { + get + { + return minCreationTime is null ? DateTime.MinValue : minCreationTime.Value; + } + set + { + minCreationTime = value; + } + } + private DateTime? minCreationTime; + + [Parameter(Mandatory = false, + HelpMessage = "Object Replication Rule Id.")] + public string RuleId { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + string[] blobType = new string[] { AzureBlobType.BlockBlob }; + PSObjectReplicationPolicyRule rule = new PSObjectReplicationPolicyRule() + { + RuleId = this.RuleId, + SourceContainer = this.SourceContainer, + DestinationContainer = this.DestinationContainer + }; + + if (this.PrefixMatch != null || minCreationTime != null) + { + rule.Filters = new PSObjectReplicationPolicyFilter() + { + PrefixMatch = this.PrefixMatch, + MinCreationTime = this.minCreationTime, + }; + } + + WriteObject(rule); + } + } +} diff --git a/src/Storage/Storage.Management/StorageAccount/RemoveAzStorageObjectReplicationPolicy.cs b/src/Storage/Storage.Management/StorageAccount/RemoveAzStorageObjectReplicationPolicy.cs new file mode 100644 index 000000000000..cbd232ca3c84 --- /dev/null +++ b/src/Storage/Storage.Management/StorageAccount/RemoveAzStorageObjectReplicationPolicy.cs @@ -0,0 +1,121 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Management.Storage.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Storage; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageObjectReplicationPolicy", SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(bool))] + public class RemoveAzureStorageAccountObjectReplicationPolicyCommand : StorageAccountBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// ManagementPolicy object parameter set + /// + private const string PolicyObjectParameterSet = "PolicyObject"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Object Replication Policy Id.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "Object Replication Policy Id.", + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string PolicyId { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Object Replication Policy object to Delete.", + ValueFromPipeline = true, + ParameterSetName = PolicyObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSObjectReplicationPolicy InputObject { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (ShouldProcess(this.StorageAccountName, "Remove Storage Account Object Replication Policy")) + { + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PolicyObjectParameterSet: + this.ResourceGroupName = InputObject.ResourceGroupName; + this.StorageAccountName = InputObject.StorageAccountName; + this.PolicyId = InputObject.PolicyId; + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + + this.StorageClient.ObjectReplicationPolicies.Delete( + this.ResourceGroupName, + this.StorageAccountName, + PolicyId); + + if (PassThru.IsPresent) + { + WriteObject(true); + } + } + } + } +} diff --git a/src/Storage/Storage.Management/StorageAccount/SetAzStorageObjectReplicationPolicy.cs b/src/Storage/Storage.Management/StorageAccount/SetAzStorageObjectReplicationPolicy.cs new file mode 100644 index 000000000000..98679933005a --- /dev/null +++ b/src/Storage/Storage.Management/StorageAccount/SetAzStorageObjectReplicationPolicy.cs @@ -0,0 +1,183 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Management.Storage.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageObjectReplicationPolicy", SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSObjectReplicationPolicy))] + public class RSetAzureStorageAccountObjectReplicationPolicyCommand : StorageAccountBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// ManagementPolicy object parameter set + /// + private const string PolicyObjectParameterSet = "PolicyObject"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = PolicyObjectParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = PolicyObjectParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Object Replication Policy Object to Set to the specified Account.", + ValueFromPipeline = true, + ParameterSetName = PolicyObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSObjectReplicationPolicy InputObject{ get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Object Replication Policy Id. It should be a GUID or 'default'. If not input the PolicyId, will use 'default', which means to create a new policy and the Id of the new policy will be returned in the created policy.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Mandatory = false, + HelpMessage = "Object Replication Policy Id. It should be a GUID or 'default'. If not input the PolicyId, will use 'default', which means to create a new policy and the Id of the new policy will be returned in the created policy.", + ParameterSetName = AccountObjectParameterSet)] + [ValidatePattern("(\\{|\\()?[A-Za-z0-9]{4}([A-Za-z0-9]{4}\\-?){4}[A-Za-z0-9]{12}(\\}|\\()?|default")] + public string PolicyId + { + get + { + return policyId; + } + set + { + policyId = value; + } + } + private string policyId = "default"; + + [Parameter( + Mandatory = true, + HelpMessage = "Object Replication Policy SourceAccount.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "Object Replication Policy SourceAccount.", + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string SourceAccount { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Object Replication Policy DestinationAccount. Default value will be the input StorageAccountName.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Mandatory = false, + HelpMessage = "Object Replication Policy DestinationAccount. Default value will be the account name of the input account object.", + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string DestinationAccount { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Object Replication Policy Rules.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Mandatory = true, + HelpMessage = "Object Replication Policy Rules.", + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSObjectReplicationPolicyRule[] Rule { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (ShouldProcess(this.StorageAccountName, "Set Storage Account Object Replication Policy")) + { + ObjectReplicationPolicy policyToSet = null; + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PolicyObjectParameterSet: + this.PolicyId = InputObject.PolicyId; + policyToSet = InputObject.ParseObjectReplicationPolicy(); + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + + // Build the policy object to set from the input policy properties + if (ParameterSetName != PolicyObjectParameterSet) + { + policyToSet = new ObjectReplicationPolicy() + { + SourceAccount = this.SourceAccount, + // If not specify the destination account, will set destination account to the account which the policy will be set to + DestinationAccount = string.IsNullOrWhiteSpace(this.DestinationAccount) ? this.StorageAccountName : this.DestinationAccount, + Rules = PSObjectReplicationPolicyRule.ParseObjectReplicationPolicyRules(this.Rule) + }; + } + + ObjectReplicationPolicy policy = this.StorageClient.ObjectReplicationPolicies.CreateOrUpdate( + this.ResourceGroupName, + this.StorageAccountName, + PolicyId, + policyToSet); + + WriteObject(new PSObjectReplicationPolicy(policy, this.ResourceGroupName, this.StorageAccountName)); + } + } + } +} diff --git a/src/Storage/Storage.Management/help/Az.Storage.md b/src/Storage/Storage.Management/help/Az.Storage.md index 8ce12708b9b8..ab3a240fc8ff 100644 --- a/src/Storage/Storage.Management/help/Az.Storage.md +++ b/src/Storage/Storage.Management/help/Az.Storage.md @@ -110,6 +110,9 @@ Gets the state of a copy operation. ### [Get-AzStorageFileHandle](Get-AzStorageFileHandle.md) Lists file handles of a file share, a file directory or a file. +### [Get-AzStorageObjectReplicationPolicy](Get-AzStorageObjectReplicationPolicy.md) +Gets or lists object replication policy of a Storage account. + ### [Get-AzStorageQueue](Get-AzStorageQueue.md) Lists storage queues. @@ -197,6 +200,9 @@ Creates a directory. ### [New-AzStorageFileSASToken](New-AzStorageFileSASToken.md) Generates a shared access signature token for a Storage file. +### [New-AzStorageObjectReplicationPolicyRule](New-AzStorageObjectReplicationPolicyRule.md) +Creates an object replication policy rule. + ### [New-AzStorageQueue](New-AzStorageQueue.md) Creates a storage queue. @@ -266,6 +272,9 @@ Deletes a directory. ### [Remove-AzStorageFile](Remove-AzStorageFile.md) Deletes a file. +### [Remove-AzStorageObjectReplicationPolicy](Remove-AzStorageObjectReplicationPolicy.md) +Removes the specified object replication policy from a Storage account. + ### [Remove-AzStorageQueue](Remove-AzStorageQueue.md) Removes a storage queue. @@ -317,6 +326,9 @@ Sets the CORS rules for a type of Storage service. ### [Set-AzStorageFileContent](Set-AzStorageFileContent.md) Uploads the contents of a file. +### [Set-AzStorageObjectReplicationPolicy](Set-AzStorageObjectReplicationPolicy.md) +Creates or updates the specified object replication policy in a Storage account. + ### [Set-AzStorageQueueStoredAccessPolicy](Set-AzStorageQueueStoredAccessPolicy.md) Sets a stored access policy for an Azure storage queue. diff --git a/src/Storage/Storage.Management/help/Get-AzStorageBlobQueryResult.md b/src/Storage/Storage.Management/help/Get-AzStorageBlobQueryResult.md index f83c567f7277..f675f9295d1d 100644 --- a/src/Storage/Storage.Management/help/Get-AzStorageBlobQueryResult.md +++ b/src/Storage/Storage.Management/help/Get-AzStorageBlobQueryResult.md @@ -17,7 +17,7 @@ Applies a simple Structured Query Language (SQL) statement on a blob's contents Get-AzStorageBlobQueryResult [-Blob] [-Container] [-SnapshotTime ] [-VersionId ] -QueryString -ResultFile [-InputTextConfiguration ] - [-OutputTextConfiguration ] [-PassThru] [-Context ] + [-OutputTextConfiguration ] [-PassThru] [-Force] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] @@ -27,7 +27,7 @@ Get-AzStorageBlobQueryResult [-Blob] [-Container] [-SnapshotTi ``` Get-AzStorageBlobQueryResult -BlobBaseClient -QueryString -ResultFile [-InputTextConfiguration ] - [-OutputTextConfiguration ] [-PassThru] [-Context ] + [-OutputTextConfiguration ] [-PassThru] [-Force] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] @@ -38,7 +38,7 @@ Get-AzStorageBlobQueryResult -BlobBaseClient -QueryString [-Blob] [-SnapshotTime ] [-VersionId ] -QueryString -ResultFile [-InputTextConfiguration ] - [-OutputTextConfiguration ] [-PassThru] [-Context ] + [-OutputTextConfiguration ] [-PassThru] [-Force] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] @@ -220,6 +220,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Force +Force to overwrite the existing file. + +```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 +``` + ### -InputTextConfiguration The configuration used to handled the query input text. Create configuration object the with New-AzStorageBlobQueryConfig. diff --git a/src/Storage/Storage.Management/help/Get-AzStorageObjectReplicationPolicy.md b/src/Storage/Storage.Management/help/Get-AzStorageObjectReplicationPolicy.md new file mode 100644 index 000000000000..fca844afa470 --- /dev/null +++ b/src/Storage/Storage.Management/help/Get-AzStorageObjectReplicationPolicy.md @@ -0,0 +1,156 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/get-azstorageobjectreplicationpolicy +schema: 2.0.0 +--- + +# Get-AzStorageObjectReplicationPolicy + +## SYNOPSIS +Gets or lists object replication policy of a Storage account. + +## SYNTAX + +### AccountName (Default) +``` +Get-AzStorageObjectReplicationPolicy [-ResourceGroupName] [-StorageAccountName] + [-PolicyId ] [-DefaultProfile ] [] +``` + +### AccountObject +``` +Get-AzStorageObjectReplicationPolicy -StorageAccount [-PolicyId ] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzStorageObjectReplicationPolicy** cmdlet gets or lists object replication policy of a Storage account. + +## EXAMPLES + +### Example 1: Get an object replication policy with specific policy Id and show its rules. +``` +PS C:\> $policy = Get-AzStorageObjectReplicationPolicy -ResourceGroupName "myresourcegroup" -AccountName "mydestaccount" -PolicyId 56bfa11c-81ef-4f8d-b307-5e5386e16fba + +PS C:\> $policy + +ResourceGroupName StorageAccountName PolicyId EnabledTime SourceAccount DestinationAccount Rules +----------------- ------------------ -------- ----------- ------------- ------------------ ----- +myresourcegroup mydestaccount 56bfa11c-81ef-4f8d-b307-5e5386e16fba mysourceaccount mydestaccount [5fa8b1d6-4985-4abd-a0b3-ec4d07295a43,...] + +PS C:\> $policy.Rules + +RuleId SourceContainer DestinationContainer Filters.PrefixMatch Filters.MinCreationTime +------ --------------- -------------------- ------------------- ----------------------- +d3d39a01-8d92-40e5-849f-e56209ae5cf5 src1 dest1 {} +2407de9a-3301-4656-858f-359d185565e0 src dest {a, abc, dd} 2019-01-01T16:00:00Z +``` + +This command gets an object replication policy with specific policy Id and show its rules. + +### Example 2:List object replication policy from a Storage account +``` +PS C:\> $policies = Get-AzStorageObjectReplicationPolicy -ResourceGroupName "myresourcegroup" -AccountName "mydestaccount" + +PS C:\> $policies + +ResourceGroupName StorageAccountName PolicyId EnabledTime SourceAccount DestinationAccount Rules +----------------- ------------------ -------- ----------- ------------- ------------------ ----- +myresourcegroup mydestaccount 56bfa11c-81ef-4f8d-b307-5e5386e16fba mysrcaccount1 mydestaccount [5fa8b1d6-4985-4abd-a0b3-ec4d07295a43,...] +myresourcegroup mydestaccount 68434c7a-20d0-4282-b75c-43b5a243435e mysrcaccount2 mydestaccount [d3d39a01-8d92-40e5-849f-e56209ae5cf5,...] +``` + +This command lists object replication policy from a Storage account. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyId +Object Replication Policy Id. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/New-AzStorageObjectReplicationPolicyRule.md b/src/Storage/Storage.Management/help/New-AzStorageObjectReplicationPolicyRule.md new file mode 100644 index 000000000000..a9a81ab4dd93 --- /dev/null +++ b/src/Storage/Storage.Management/help/New-AzStorageObjectReplicationPolicyRule.md @@ -0,0 +1,157 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/New-azstorageobjectreplicationpolicyrule +schema: 2.0.0 +--- + +# New-AzStorageObjectReplicationPolicyRule + +## SYNOPSIS +Creates an object replication policy rule. + +## SYNTAX + +``` +New-AzStorageObjectReplicationPolicyRule -SourceContainer -DestinationContainer + [-PrefixMatch ] [-MinCreationTime ] [-RuleId ] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzStorageObjectReplicationPolicy** cmdlet creates an object replication policy rule, which will be used in Set-AzStorageObjectReplicationPolicy cmdlet. + +## EXAMPLES + +### Example 1: Create an object replication policy rule with only source and destination account, and show its properties +``` +PS C:\> $rule1 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src1 -DestinationContainer dest1 + +PS C:\> $rule1 + +RuleId SourceContainer DestinationContainer Filters.PrefixMatch Filters.MinCreationTime +------ --------------- -------------------- ------------------- ----------------------- + src1 dest1 {} +``` + +This command creates an object replication policy rule with only source and destination account, and show its properties. + +### Example 2: Create an object replication policy rule with all properties, and show its properties +``` +PS C:\> $rule2 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src -DestinationContainer dest -MinCreationTime 2019-01-01T16:00:00Z -PrefixMatch a,abc,dd + +PS C:\> $rule2 + +RuleId SourceContainer DestinationContainer Filters.PrefixMatch Filters.MinCreationTime +------ --------------- -------------------- ------------------- ----------------------- + src dest {a, abc, dd} 2019-01-01T16:00:00Z +``` + +This command an object replication policy rule with all properties, and show its properties. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DestinationContainer +The Destination Container name to replicate to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinCreationTime +Blobs created after the time will be replicated to the destination.. + +```yaml +Type: System.DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrefixMatch +Filters the results to replicate only blobs whose names begin with the specified prefix. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RuleId +Object Replication Rule Id. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SourceContainer +The Source Container name to replicate from. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Remove-AzStorageObjectReplicationPolicy.md b/src/Storage/Storage.Management/help/Remove-AzStorageObjectReplicationPolicy.md new file mode 100644 index 000000000000..60d6c30daaf0 --- /dev/null +++ b/src/Storage/Storage.Management/help/Remove-AzStorageObjectReplicationPolicy.md @@ -0,0 +1,199 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/remove-azstorageobjectreplicationpolicy +schema: 2.0.0 +--- + +# Remove-AzStorageObjectReplicationPolicy + +## SYNOPSIS +Removes the specified object replication policy from a Storage account. + +## SYNTAX + +### AccountName (Default) +``` +Remove-AzStorageObjectReplicationPolicy [-ResourceGroupName] [-StorageAccountName] + -PolicyId [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### AccountObject +``` +Remove-AzStorageObjectReplicationPolicy -StorageAccount -PolicyId [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### PolicyObject +``` +Remove-AzStorageObjectReplicationPolicy -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzStorageObjectReplicationPolicy** cmdlet removes the specified object replication policy from a Storage account. + +## EXAMPLES + +### Example 1: Remove an object replication policy with specific policyId from a storage account. +``` +Remove-AzStorageObjectReplicationPolicy -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -PolicyId $policyId +``` + +This command removes an object replication policy with specific policyId from a storage account. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Object Replication Policy object to Delete. + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy +Parameter Sets: PolicyObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru +{{Fill PassThru Description}} + +```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 +``` + +### -PolicyId +Object Replication Policy Id. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Set-AzStorageObjectReplicationPolicy.md b/src/Storage/Storage.Management/help/Set-AzStorageObjectReplicationPolicy.md new file mode 100644 index 000000000000..0555bb6a4fad --- /dev/null +++ b/src/Storage/Storage.Management/help/Set-AzStorageObjectReplicationPolicy.md @@ -0,0 +1,251 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/set-azstorageobjectreplicationpolicy +schema: 2.0.0 +--- + +# Set-AzStorageObjectReplicationPolicy + +## SYNOPSIS +Creates or updates the specified object replication policy in a Storage account. + +## SYNTAX + +### AccountName (Default) +``` +Set-AzStorageObjectReplicationPolicy [-ResourceGroupName] [-StorageAccountName] + [-PolicyId ] -SourceAccount [-DestinationAccount ] + -Rule [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### PolicyObject +``` +Set-AzStorageObjectReplicationPolicy [-ResourceGroupName] [-StorageAccountName] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### AccountObject +``` +Set-AzStorageObjectReplicationPolicy -StorageAccount [-PolicyId ] + -SourceAccount [-DestinationAccount ] -Rule + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzStorageObjectReplicationPolicy** cmdlet creates or updates the specified object replication policy in a Storage account. + +## EXAMPLES + +### Example 1: Set object replication policy to both destination and source account. +``` +PS C:\> $rule1 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src1 -DestinationContainer dest1 + +PS C:\> $rule2 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src -DestinationContainer dest -MinCreationTime 2019-01-01T16:00:00Z -PrefixMatch a,abc,dd + +PS C:\> $destPolicy = Set-AzStorageObjectReplicationPolicy -ResourceGroupName "myresourcegroup" -AccountName "mydestaccount" -PolicyId default -SourceAccount $srcAccountName -Rule $rule1,$rule2 + +PS C:\> $destPolicy + +ResourceGroupName StorageAccountName PolicyId EnabledTime SourceAccount DestinationAccount Rules +----------------- ------------------ -------- ----------- ------------- ------------------ ----- +myresourcegroup mydestaccount 56bfa11c-81ef-4f8d-b307-5e5386e16fba mysourceaccount mydestaccount [5fa8b1d6-4985-4abd-a0b3-ec4d07295a43,...] + +PS C:\> Set-AzStorageObjectReplicationPolicy -ResourceGroupName "myresourcegroup" -AccountName "mysourceaccount" -InputObject $destPolicy + +ResourceGroupName StorageAccountName PolicyId EnabledTime SourceAccount DestinationAccount Rules +----------------- ------------------ -------- ----------- ------------- ------------------ ----- +myresourcegroup mysourceaccount 56bfa11c-81ef-4f8d-b307-5e5386e16fba mysourceaccount mydestaccount [5fa8b1d6-4985-4abd-a0b3-ec4d07295a43,...] +``` + +This command sets object replication policy to both destination and source account. +First create 2 object replication policy rules, and set policy with the 2 rules to destination account. Then set the object replication policy from destination account to source account. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DestinationAccount +Object Replication Policy DestinationAccount. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Object Replication Policy Object to Set to the specified Account. + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy +Parameter Sets: PolicyObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PolicyId +Object Replication Policy Id. +It should be a GUID or 'default'. +If not input the PolicyId, will use 'default', which means to create a new policy and the Id of the new policy will be returned in the created policy. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName, PolicyObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Rule +Object Replication Policy Rules. + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicyRule[] +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SourceAccount +Object Replication Policy SourceAccount. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName, PolicyObject +Aliases: AccountName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSObjectReplicationPolicy + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Update-AzStorageBlobServiceProperty.md b/src/Storage/Storage.Management/help/Update-AzStorageBlobServiceProperty.md index 1cba43263357..81d7c563be80 100644 --- a/src/Storage/Storage.Management/help/Update-AzStorageBlobServiceProperty.md +++ b/src/Storage/Storage.Management/help/Update-AzStorageBlobServiceProperty.md @@ -15,22 +15,22 @@ Modifies the service properties for the Azure Storage Blob service. ### AccountName (Default) ``` Update-AzStorageBlobServiceProperty [-ResourceGroupName] [-StorageAccountName] - [-DefaultServiceVersion ] [-IsVersioningEnabled ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-DefaultServiceVersion ] [-EnableChangeFeed ] [-IsVersioningEnabled ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### AccountObject ``` Update-AzStorageBlobServiceProperty -StorageAccount [-DefaultServiceVersion ] - [-IsVersioningEnabled ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-EnableChangeFeed ] [-IsVersioningEnabled ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### BlobServicePropertiesResourceId ``` Update-AzStorageBlobServiceProperty [-ResourceId] [-DefaultServiceVersion ] - [-IsVersioningEnabled ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-EnableChangeFeed ] [-IsVersioningEnabled ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -55,7 +55,27 @@ IsVersioningEnabled : This command sets the DefaultServiceVersion of Blob Service to 2018-03-28. -### Example 2: Enable Versioning on Blob service of a Storage account +### Example 2: Enable Changefeed on Blob service of a Storage account +``` +C:\PS> Update-AzStorageBlobServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -EnableChangeFeed $true + +StorageAccountName : mystorageaccount +ResourceGroupName : myresourcegroup +DefaultServiceVersion : +DeleteRetentionPolicy.Enabled : False +DeleteRetentionPolicy.Days : +RestorePolicy.Enabled : +RestorePolicy.Days : +ChangeFeed : True +IsVersioningEnabled : +``` + +This command enables Changefeed on Blob service of a Storage account +Change feed support in Azure Blob Storage works by listening to a GPv2 or Blob storage account for any blob level creation, modification, or deletion events. +It then outputs an ordered log of events for the blobs stored in the $blobchangefeed container within the storage account. +The serialized changes are persisted as an Apache Avro file and can be processed asynchronously and incrementally. + +### Example 3: Enable Versioning on Blob service of a Storage account ``` C:\PS> Update-AzStorageBlobServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -IsVersioningEnabled $true @@ -104,6 +124,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableChangeFeed +Enable Change Feed logging for the storage account by set to $true, disable Change Feed logging by set to $false. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IsVersioningEnabled Gets or sets versioning is enabled if set to true. diff --git a/src/Storage/Storage/Blob/Cmdlet/GetAzStorageBlobQueryResult.cs b/src/Storage/Storage/Blob/Cmdlet/GetAzStorageBlobQueryResult.cs index 30cb355aa25a..19c784a6ab1b 100644 --- a/src/Storage/Storage/Blob/Cmdlet/GetAzStorageBlobQueryResult.cs +++ b/src/Storage/Storage/Blob/Cmdlet/GetAzStorageBlobQueryResult.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Blob using System.Threading.Tasks; using Track2Models = global::Azure.Storage.Blobs.Models; - [Cmdlet("Get", Azure.Commands.ResourceManager.Common.AzureRMConstants.AzurePrefix + "StorageBlobQueryResult", DefaultParameterSetName = NameParameterSet, SupportsShouldProcess = true),OutputType(typeof(BlobQueryOutput))] + [Cmdlet("Get", Azure.Commands.ResourceManager.Common.AzureRMConstants.AzurePrefix + "StorageBlobQueryResult", DefaultParameterSetName = NameParameterSet, SupportsShouldProcess = true), OutputType(typeof(BlobQueryOutput))] public class GetStorageAzureBlobQueryResultCommand : StorageCloudBlobCmdletBase { /// @@ -46,7 +46,7 @@ public class GetStorageAzureBlobQueryResultCommand : StorageCloudBlobCmdletBase private const string NameParameterSet = "NamePipeline"; private List queryErrors = new List(); - private long bytesScanned = 0; + private long bytesScanned = 0; [Parameter(HelpMessage = "BlobBaseClient Object", Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = BlobPipelineParameterSet)] @@ -105,6 +105,9 @@ public string Container [Parameter(Mandatory = false, HelpMessage = "Return whether the specified blob is successfully queried.")] public SwitchParameter PassThru { get; set; } + [Parameter(HelpMessage = "Force to overwrite the existing file.")] + public SwitchParameter Force { get; set; } + protected override bool UseTrack2Sdk() { return true; @@ -126,7 +129,7 @@ public GetStorageAzureBlobQueryResultCommand(IStorageBlobManagement channel) { Channel = channel; } - + /// /// Cmdlet begin processing @@ -151,11 +154,11 @@ public override void ExecuteCmdlet() case BlobPipelineParameterSet: break; case ContainerPipelineParameterSet: - this.BlobBaseClient = Util.GetTrack2BlobClient(this.BlobContainerClient, - this.Blob, Channel.StorageContext, - this.VersionId, - null, - this.SnapshotTime is null? null : this.SnapshotTime.Value.ToString("o"), + this.BlobBaseClient = Util.GetTrack2BlobClient(this.BlobContainerClient, + this.Blob, Channel.StorageContext, + this.VersionId, + null, + this.SnapshotTime is null ? null : this.SnapshotTime.Value.ToString("o"), this.ClientOptions, Track2Models.BlobType.Block); break; case NameParameterSet: @@ -179,11 +182,11 @@ internal async Task QueryAzureBlob(long taskId, IStorageBlobManagement localChan { IProgress progressHandler = new Progress((finishedBytes) => { - bytesScanned = finishedBytes; + bytesScanned = finishedBytes; }); // preapre query Option - // Not show the ProgressHandler now, since the ProgressHandler can't represent the read query progress + // Not show the Progressbar now, since the ProgressHandler can't represent the read query progress Track2Models.BlobQueryOptions queryOption = new Track2Models.BlobQueryOptions { InputTextConfiguration = this.InputTextConfiguration is null ? null : this.InputTextConfiguration.ParseBlobQueryTextConfiguration(), @@ -196,13 +199,20 @@ internal async Task QueryAzureBlob(long taskId, IStorageBlobManagement localChan queryErrors.Add(new PSBlobQueryError(e)); }; - using (var reader = (await ((BlockBlobClient)blob).QueryAsync(query, queryOption, CmdletCancellationToken)).Value.Content) + if (this.Force.IsPresent + || !System.IO.File.Exists(this.ResultFile) + || ShouldContinue(string.Format(Resources.OverwriteConfirmation, this.ResultFile), null)) { - FileStream fs = File.Create(this.ResultFile); - reader.CopyTo(fs); - fs.Close(); + { + using (var reader = (await ((BlockBlobClient)blob).QueryAsync(query, queryOption, CmdletCancellationToken)).Value.Content) + { + FileStream fs = File.Create(this.ResultFile); + reader.CopyTo(fs); + fs.Close(); + } + OutputStream.WriteObject(taskId, new BlobQueryOutput(bytesScanned, queryErrors)); + } } - OutputStream.WriteObject(taskId, new BlobQueryOutput(bytesScanned, queryErrors)); } } } diff --git a/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 b/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 index c517041fe43f..06fd52d6195a 100644 --- a/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 +++ b/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 @@ -39,6 +39,15 @@ function Get-SynapseSqlPoolName return getAssetName } +<# +.SYNOPSIS +Gets a Synapse Analytics SQL database name to use for testing +#> +function Get-SynapseSqlDatabaseName +{ + return getAssetName +} + <# .SYNOPSIS Gets a DataLake Analytics storage name to use for testing diff --git a/src/Synapse/Synapse.Test/ScenarioTests/SqlDatabaseTests.cs b/src/Synapse/Synapse.Test/ScenarioTests/SqlDatabaseTests.cs new file mode 100644 index 000000000000..ff1907c57ece --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/SqlDatabaseTests.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Synapse.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using ServiceManagement.Common.Models; + using Xunit; + + public class SqlDatabaseTests : SynapseTestBase + { + public XunitTracingInterceptor _logger; + + public SqlDatabaseTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSynapseSqlDatabase() + { + string testResourceGroupName = SynapseTestBase.TestResourceGroupName; + if (string.IsNullOrEmpty(testResourceGroupName)) + { + testResourceGroupName = nameof(TestResourceGroupName); + } + + string testWorkspaceName = SynapseTestBase.TestWorkspaceName; + if (string.IsNullOrEmpty(testWorkspaceName)) + { + testWorkspaceName = nameof(TestWorkspaceName); + } + + SynapseTestBase.NewInstance.RunPsTest( + _logger, + string.Format( + "Test-SynapseSqlDatabase -resourceGroupName '{0}' -workspaceName '{1}'", + testResourceGroupName, + testWorkspaceName)); + } + } +} diff --git a/src/Synapse/Synapse.Test/ScenarioTests/SqlDatabaseTests.ps1 b/src/Synapse/Synapse.Test/ScenarioTests/SqlDatabaseTests.ps1 new file mode 100644 index 000000000000..1e8391d1a18e --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/SqlDatabaseTests.ps1 @@ -0,0 +1,73 @@ +<# +.SYNOPSIS +Tests Synapse SqlDatabase Lifecycle (Create, Update, Get, List, Delete). +#> +function Test-SynapseSqlDatabase +{ + param + ( + $resourceGroupName = (Get-ResourceGroupName), + $workspaceName = (Get-SynapseWorkspaceName), + $SqlDatabaseName = (Get-SynapseSqlDatabaseName) + ) + + try + { + $resourceGroupName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetVariable("resourceGroupName", $resourceGroupName) + $workspaceName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetVariable("workspaceName", $workspaceName) + $workspace = Get-AzSynapseWorkspace -resourceGroupName $resourceGroupName -Name $workspaceName + $location = $workspace.Location + + # Test to make sure the SqlDatabase doesn't exist + Assert-False {Test-AzSynapseSqlDatabase -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $SqlDatabaseName} + + $SqlDatabaseCreated = New-AzSynapseSqlDatabase -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $SqlDatabaseName + + Assert-AreEqual $SqlDatabaseName $SqlDatabaseCreated.Name + Assert-AreEqual $location $SqlDatabaseCreated.Location + Assert-AreEqual "Microsoft.Synapse/Workspaces/SqlDatabases" $SqlDatabaseCreated.Type + Assert-True {$SqlDatabaseCreated.Id -like "*$resourceGroupName*"} + + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(180000) + [array]$SqlDatabaseGet = Get-AzSynapseSqlDatabase -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $SqlDatabaseName + Assert-AreEqual $SqlDatabaseName $SqlDatabaseGet[0].Name + Assert-AreEqual $location $SqlDatabaseGet[0].Location + Assert-AreEqual "Microsoft.Synapse/Workspaces/SqlDatabases" $SqlDatabaseGet[0].Type + Assert-True {$SqlDatabaseCreated.Id -like "*$resourceGroupName*"} + + # Test to make sure the SqlDatabase does exist now + Assert-True {Test-AzSynapseSqlDatabase -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $SqlDatabaseName} + + # List all SqlDatabases in workspace + [array]$SqlDatabasesInWorkspace = Get-AzSynapseSqlDatabase -resourceGroupName $resourceGroupName -WorkspaceName $workspaceName + Assert-True {$SqlDatabasesInWorkspace.Count -ge 1} + + $found = 0 + for ($i = 0; $i -lt $SqlDatabasesInWorkspace.Count; $i++) + { + if ($SqlDatabasesInWorkspace[$i].Name -eq $SqlDatabaseName) + { + $found = 1 + Assert-AreEqual $location $SqlDatabasesInWorkspace[$i].Location + Assert-AreEqual "Microsoft.Synapse/workspaces/SqlDatabases" $SqlDatabasesInWorkspace[$i].Type + Assert-True {$SqlDatabasesInWorkspace[$i].Id -like "*$resourceGroupName*"} + break + } + } + + Assert-True {$found -eq 1} "SqlDatabase created earlier is not found when listing all in resource group: $resourceGroupName." + + # Delete SqlDatabase + Assert-True {Remove-AzSynapseSqlDatabase -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $SqlDatabaseName -PassThru} "Remove SqlDatabase failed." + + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(180000) + + # Verify that it is gone by trying to get it again + Assert-Throws {Get-AzSynapseSqlDatabase -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $SqlDatabaseName} + } + finally + { + # cleanup the SQL pool that was used in case it still exists. This is a best effort task, we ignore failures here. + Invoke-HandledCmdlet -Command {Remove-AzSynapseSqlDatabase -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $SqlDatabaseName -ErrorAction SilentlyContinue} -IgnoreFailures + } +} diff --git a/src/Synapse/Synapse.Test/ScenarioTests/SqlPoolV3Tests.cs b/src/Synapse/Synapse.Test/ScenarioTests/SqlPoolV3Tests.cs new file mode 100644 index 000000000000..94f4358e908d --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/SqlPoolV3Tests.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Synapse.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using ServiceManagement.Common.Models; + using Xunit; + + public class SqlPoolV3Tests : SynapseTestBase + { + public XunitTracingInterceptor _logger; + + public SqlPoolV3Tests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSynapseSqlPoolV3() + { + string testResourceGroupName = SynapseTestBase.TestResourceGroupName; + if (string.IsNullOrEmpty(testResourceGroupName)) + { + testResourceGroupName = nameof(TestResourceGroupName); + } + + string testWorkspaceName = SynapseTestBase.TestWorkspaceName; + if (string.IsNullOrEmpty(testWorkspaceName)) + { + testWorkspaceName = nameof(TestWorkspaceName); + } + + SynapseTestBase.NewInstance.RunPsTest( + _logger, + string.Format( + "Test-SynapseSqlPoolV3 -resourceGroupName '{0}' -workspaceName '{1}'", + testResourceGroupName, + testWorkspaceName)); + } + } +} diff --git a/src/Synapse/Synapse.Test/ScenarioTests/SqlPoolV3Tests.ps1 b/src/Synapse/Synapse.Test/ScenarioTests/SqlPoolV3Tests.ps1 new file mode 100644 index 000000000000..329d18d06010 --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/SqlPoolV3Tests.ps1 @@ -0,0 +1,101 @@ +<# +.SYNOPSIS +Tests Synapse SqlPool Lifecycle (Create, Update, Get, List, Delete). +#> +function Test-SynapseSqlPoolV3 +{ + param + ( + $resourceGroupName = (Get-ResourceGroupName), + $workspaceName = (Get-SynapseWorkspaceName), + $sqlPoolName = (Get-SynapseSqlPoolName), + $sqlPoolPerformanceLevel = 'DW500f' + ) + + try + { + $resourceGroupName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetVariable("resourceGroupName", $resourceGroupName) + $workspaceName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetVariable("workspaceName", $workspaceName) + $workspace = Get-AzSynapseWorkspace -resourceGroupName $resourceGroupName -Name $workspaceName + $location = $workspace.Location + + # Test to make sure the SqlPool doesn't exist + Assert-False {Test-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3} + + $sqlPoolCreated = New-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -PerformanceLevel $sqlPoolPerformanceLevel -Version 3 + + Assert-AreEqual $sqlPoolName $sqlPoolCreated.Name + Assert-AreEqual $location $sqlPoolCreated.Location + Assert-AreEqual "Microsoft.Synapse/Workspaces/sqlPools" $sqlPoolCreated.Type + Assert-True {$sqlPoolCreated.Id -like "*$resourceGroupName*"} + + # In loop to check if SQL pool exists + for ($i = 0; $i -le 60; $i++) + { + [array]$sqlPoolGet = Get-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3 + if ($sqlPoolGet[0].Status -like "Online") + { + Assert-AreEqual $sqlPoolName $sqlPoolGet[0].Name + Assert-AreEqual $location $sqlPoolGet[0].Location + Assert-AreEqual "Microsoft.Synapse/Workspaces/sqlPools" $sqlPoolGet[0].Type + Assert-True {$sqlPoolCreated.Id -like "*$resourceGroupName*"} + break + } + + Write-Host "SqlPool not yet provisioned. current state: $($sqlPoolGet[0].Status)" + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(30000) + Assert-False {$i -eq 60} "Synapse SqlPool is not in succeeded state even after 30 min." + } + + # Test to make sure the SqlPool does exist now + Assert-True {Test-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3} + + # Updating SqlPool + $newPerformanceLevel = 'DW1000f' + Update-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3 -PerformanceLevel $newPerformanceLevel + + # Wait for 3 minutes for the update completion + # Without this, the test will pass non-deterministically + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(180000) + $sqlPoolUpdated = Get-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3 + + Assert-AreEqual $sqlPoolName $sqlPoolUpdated.Name + Assert-AreEqual $location $sqlPoolUpdated.Location + Assert-AreEqual "Microsoft.Synapse/workspaces/sqlPools" $sqlPoolUpdated.Type + Assert-True {$sqlPoolUpdated.Id -like "*$resourceGroupName*"} + + Assert-NotNull $sqlPoolUpdated.Sku.Name "Sku does not exist" + Assert-AreEqual $newPerformanceLevel $sqlPoolUpdated.Sku.Name + + # List all SqlPools in workspace + [array]$sqlPoolsInWorkspace = Get-AzSynapseSqlPool -resourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Version 3 + Assert-True {$sqlPoolsInWorkspace.Count -ge 1} + + $found = 0 + for ($i = 0; $i -lt $sqlPoolsInWorkspace.Count; $i++) + { + if ($sqlPoolsInWorkspace[$i].Name -eq $sqlPoolName) + { + $found = 1 + Assert-AreEqual $location $sqlPoolsInWorkspace[$i].Location + Assert-AreEqual "Microsoft.Synapse/workspaces/sqlPools" $sqlPoolsInWorkspace[$i].Type + Assert-True {$sqlPoolsInWorkspace[$i].Id -like "*$resourceGroupName*"} + break + } + } + Assert-True {$found -eq 1} "SqlPool created earlier is not found when listing all in resource group: $resourceGroupName." + + # Delete SqlPool + Assert-True {Remove-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3 -PassThru} "Remove SqlPool failed." + + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(180000) + + # Verify that it is gone by trying to get it again + Assert-Throws {Get-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3} + } + finally + { + # cleanup the SQL pool that was used in case it still exists. This is a best effort task, we ignore failures here. + Invoke-HandledCmdlet -Command {Remove-AzSynapseSqlPool -ResourceGroupName $resourceGroupName -WorkspaceName $workspaceName -Name $sqlPoolName -Version 3 -ErrorAction SilentlyContinue} -IgnoreFailures + } +} diff --git a/src/Synapse/Synapse.Test/ScenarioTests/SynapseTestBase.cs b/src/Synapse/Synapse.Test/ScenarioTests/SynapseTestBase.cs index a758209ab9a3..72d53ae30120 100644 --- a/src/Synapse/Synapse.Test/ScenarioTests/SynapseTestBase.cs +++ b/src/Synapse/Synapse.Test/ScenarioTests/SynapseTestBase.cs @@ -44,6 +44,8 @@ public class SynapseTestBase : RMTestBase public SynapseManagementClient SynapseManagementClient { get; private set; } + public SynapseSqlV3ManagementClient SynapseSqlV3ManagementClient { get; private set; } + public SynapseClient SynapseClient { get; private set; } public StorageManagementClient StorageManagementClient { get; private set; } @@ -106,7 +108,6 @@ public void RunPsTestWorkflow( "ScenarioTests\\Common.ps1", "ScenarioTests\\" + callingClassName + ".ps1", _helper.RMProfileModule, - //"AzureRM.Storage.ps1", _helper.GetRMModulePath(@"Az.Synapse.psd1"), "AzureRM.Resources.ps1", _helper.GetRMModulePath(@"Az.Storage.psd1")); @@ -128,11 +129,13 @@ public void RunPsTestWorkflow( protected void SetupManagementClients(MockContext context) { SynapseManagementClient = GetSynapseManagementClient(context); + SynapseSqlV3ManagementClient = GetSynapseSqlV3ManagementClient(context); SynapseClient = GetSynapseClient(context); StorageManagementClient = GetStorageManagementClient(context); NewResourceManagementClient = GetResourceManagementClient(context); _helper.SetupManagementClients( SynapseManagementClient, + SynapseSqlV3ManagementClient, SynapseClient, StorageManagementClient, NewResourceManagementClient @@ -167,6 +170,11 @@ protected static SynapseManagementClient GetSynapseManagementClient(MockContext return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } + protected static SynapseSqlV3ManagementClient GetSynapseSqlV3ManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + protected static SynapseClient GetSynapseClient(MockContext context) { string environmentConnectionString = Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION"); diff --git a/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.SqlDatabaseTests/TestSynapseSqlDatabase.json b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.SqlDatabaseTests/TestSynapseSqlDatabase.json new file mode 100644 index 000000000000..9219f75aa918 --- /dev/null +++ b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.SqlDatabaseTests/TestSynapseSqlDatabase.json @@ -0,0 +1,1073 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d6d37ba-1f53-4068-bbf3-45e07ce04cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86082b05-bd68-4d1f-8095-8e8eba1518b3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1427fa40-6484-447d-af95-66e4aec40904" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174021Z:1427fa40-6484-447d-af95-66e4aec40904" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:40:20 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws\",\r\n \"location\": \"eastus2euap\",\r\n \"name\": \"pkanekalws\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9df6a22b-e965-4a48-8285-a81155127a7a\",\r\n \"tenantId\": \"33e01921-4d64-4f8c-a055-5bdaffd5e33d\"\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f086dc8c7-04c8-4b81-8993-892d648babe3%2fresourceGroups%2fpkanekalrg%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fpkanekalws\",\r\n \"sql\": \"pkanekalws.sql.azuresynapse.net\",\r\n \"dev\": \"https://pkanekalws.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"pkanekalws-ondemand.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"workspacemanagedrg-aef91a3c-b3ab-48ce-b6eb-231a764eaf83\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://pkadls.dfs.core.windows.net\",\r\n \"filesystem\": \"pkfs\"\r\n },\r\n \"sqlAdministratorLogin\": \"sqladminuser\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"0b9eed9e-06f6-44de-a8a1-baaf70cfe141\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c52d2418-5bae-409f-9fcf-f7e5262f4fb6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "68a57982-fa7c-434d-ab8f-52b16d428642" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f381a78a-27db-4cb1-8ff4-ad449714fe0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174021Z:f381a78a-27db-4cb1-8ff4-ad449714fe0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:40:21 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws\",\r\n \"location\": \"eastus2euap\",\r\n \"name\": \"pkanekalws\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9df6a22b-e965-4a48-8285-a81155127a7a\",\r\n \"tenantId\": \"33e01921-4d64-4f8c-a055-5bdaffd5e33d\"\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f086dc8c7-04c8-4b81-8993-892d648babe3%2fresourceGroups%2fpkanekalrg%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fpkanekalws\",\r\n \"sql\": \"pkanekalws.sql.azuresynapse.net\",\r\n \"dev\": \"https://pkanekalws.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"pkanekalws-ondemand.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"workspacemanagedrg-aef91a3c-b3ab-48ce-b6eb-231a764eaf83\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://pkadls.dfs.core.windows.net\",\r\n \"filesystem\": \"pkfs\"\r\n },\r\n \"sqlAdministratorLogin\": \"sqladminuser\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"0b9eed9e-06f6-44de-a8a1-baaf70cfe141\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63175c05-43aa-46b2-8874-5836fb0499f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f83a6f68-9c7a-471f-868a-052e81c9f4ec" + ], + "x-ms-correlation-request-id": [ + "f83a6f68-9c7a-471f-868a-052e81c9f4ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174021Z:f83a6f68-9c7a-471f-868a-052e81c9f4ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:40:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "240" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4646445-4989-4d61-9ee9-7a5b438edbb6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8dfaac7c-c751-4754-b8c1-55cbf7eacc1e" + ], + "x-ms-correlation-request-id": [ + "8dfaac7c-c751-4754-b8c1-55cbf7eacc1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174022Z:8dfaac7c-c751-4754-b8c1-55cbf7eacc1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:40:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "240" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "363483f2-b5bb-4aec-b366-9ca4c7838f27" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "015a1354-c435-415f-975f-5d2099ba9f72" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174040Z:015a1354-c435-415f-975f-5d2099ba9f72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:40:40 GMT" + ], + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:40:25.023Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:40:25.023Z\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"databaseGuid\": \"c82257f0-adde-4348-9479-91aad2b81d41\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633\",\r\n \"name\": \"ps633\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlDatabases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02c56f82-4fff-4ffa-b687-bd229e92e55b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18c50f98-6837-4f77-a740-2adf946339af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c4edaec2-ab32-424e-884b-6e03ebf00b4f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174341Z:c4edaec2-ab32-424e-884b-6e03ebf00b4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:43:40 GMT" + ], + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:40:25.023Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:40:25.023Z\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"databaseGuid\": \"c82257f0-adde-4348-9479-91aad2b81d41\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633\",\r\n \"name\": \"ps633\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlDatabases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4637d834-a475-48f9-8afb-0a574dc8980c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e5bb1c4-6bb2-41ed-b39a-2c617746f788" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6ce146a5-6080-4ed7-a4f4-3003cfeb5efc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174341Z:6ce146a5-6080-4ed7-a4f4-3003cfeb5efc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:43:41 GMT" + ], + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:40:25.023Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:40:25.023Z\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"databaseGuid\": \"c82257f0-adde-4348-9479-91aad2b81d41\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633\",\r\n \"name\": \"ps633\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlDatabases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e79a545-546a-4b44-bfa5-2465a05ab7c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64b35677-2925-45c3-ace2-ab9c96057202" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "2bd65b42-9285-40f4-a10a-fb9bb5ce37b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174341Z:2bd65b42-9285-40f4-a10a-fb9bb5ce37b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:43:41 GMT" + ], + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:40:25.023Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:40:25.023Z\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"databaseGuid\": \"c82257f0-adde-4348-9479-91aad2b81d41\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633\",\r\n \"name\": \"ps633\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlDatabases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a3f8e96-7e00-46ca-9add-de222ebf9b62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f7dfb490-fa53-4e38-be99-a89196a646f8" + ], + "x-ms-correlation-request-id": [ + "f7dfb490-fa53-4e38-be99-a89196a646f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174715Z:f7dfb490-fa53-4e38-be99-a89196a646f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:47:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "240" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "040e7b05-f5eb-4d63-af62-e0f7d3074264" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3c39f965-afbf-4e21-8691-b150a9e078ed" + ], + "x-ms-correlation-request-id": [ + "3c39f965-afbf-4e21-8691-b150a9e078ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174715Z:3c39f965-afbf-4e21-8691-b150a9e078ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:47:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "240" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 0\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9654e43d-e29f-42ca-b481-d02e91839e34" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "131" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseOperationResults/0a4af54a-efbd-4966-85cb-c2eba7359aa8?api-version=2020-04-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseAzureAsyncOperation/0a4af54a-efbd-4966-85cb-c2eba7359aa8?api-version=2020-04-01-preview" + ], + "x-ms-request-id": [ + "3f2b7400-d4ac-4d6a-af36-0368a0ca94d9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5dbc6feb-46d5-403d-b1bb-63e9b65b1188" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174024Z:5dbc6feb-46d5-403d-b1bb-63e9b65b1188" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:40:24 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDWGen3Database\",\r\n \"startTime\": \"2020-08-06T17:40:24.79Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseAzureAsyncOperation/0a4af54a-efbd-4966-85cb-c2eba7359aa8?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxEYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vMGE0YWY1NGEtZWZiZC00OTY2LTg1Y2ItYzJlYmE3MzU5YWE4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "87ce5f52-7ea5-448e-9d75-191103073d9b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0d996c16-a275-4ec2-9df3-d8fc4a80dfe6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174040Z:0d996c16-a275-4ec2-9df3-d8fc4a80dfe6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:40:40 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"0a4af54a-efbd-4966-85cb-c2eba7359aa8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-06T17:40:24.79Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2204174d-db31-432e-b20c-ed5087279c41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "381ff317-b6cb-4170-8ac3-8b01bf69c9b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "24079e62-4656-4040-8288-50d1a0946862" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174341Z:24079e62-4656-4040-8288-50d1a0946862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:43:41 GMT" + ], + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:40:25.023Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:40:25.023Z\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 268435456000,\r\n \"databaseGuid\": \"c82257f0-adde-4348-9479-91aad2b81d41\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633\",\r\n \"name\": \"ps633\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlDatabases\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlDatabases/ps633?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxEYXRhYmFzZXMvcHM2MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0111fdfc-98b4-4568-b117-5ad4365cf96d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseOperationResults/71f5f258-fc58-4c3d-a809-076878156bc3?api-version=2020-04-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseAzureAsyncOperation/71f5f258-fc58-4c3d-a809-076878156bc3?api-version=2020-04-01-preview" + ], + "x-ms-request-id": [ + "71f5f258-fc58-4c3d-a809-076878156bc3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "6435d535-0c36-45ca-ac56-c695188fc4ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174345Z:6435d535-0c36-45ca-ac56-c695188fc4ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:43:44 GMT" + ], + "Content-Length": [ + "73" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropDWGen3Database\",\r\n \"startTime\": \"2020-08-06T17:43:42.187Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseAzureAsyncOperation/71f5f258-fc58-4c3d-a809-076878156bc3?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxEYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzFmNWYyNTgtZmM1OC00YzNkLWE4MDktMDc2ODc4MTU2YmMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "4358e6a6-46e3-4219-b0c6-40e02dccb7a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b899f854-5228-4688-9bb6-9d24890d30c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174400Z:b899f854-5228-4688-9bb6-9d24890d30c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:44:00 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"71f5f258-fc58-4c3d-a809-076878156bc3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:43:42.187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseAzureAsyncOperation/71f5f258-fc58-4c3d-a809-076878156bc3?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxEYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vNzFmNWYyNTgtZmM1OC00YzNkLWE4MDktMDc2ODc4MTU2YmMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "8250f650-038e-415b-a12e-4c841592b57f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "6008417a-029b-4c36-a606-0aade565dc26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174415Z:6008417a-029b-4c36-a606-0aade565dc26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:44:15 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"71f5f258-fc58-4c3d-a809-076878156bc3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-06T17:43:42.187Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlDatabaseOperationResults/71f5f258-fc58-4c3d-a809-076878156bc3?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxEYXRhYmFzZU9wZXJhdGlvblJlc3VsdHMvNzFmNWYyNTgtZmM1OC00YzNkLWE4MDktMDc2ODc4MTU2YmMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f14a21d-77bb-4d02-9e81-17b5bdca6de6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f74e59ba-c848-4fa1-9359-82b58bd878b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174415Z:f74e59ba-c848-4fa1-9359-82b58bd878b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:44:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "": [ + "ps633" + ] + }, + "Variables": { + "SubscriptionId": "086dc8c7-04c8-4b81-8993-892d648babe3", + "resourceGroupName": "pkanekalrg", + "workspaceName": "pkanekalws" + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.SqlPoolV3Tests/TestSynapseSqlPoolV3.json b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.SqlPoolV3Tests/TestSynapseSqlPoolV3.json new file mode 100644 index 000000000000..1635c76967a1 --- /dev/null +++ b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.SqlPoolV3Tests/TestSynapseSqlPoolV3.json @@ -0,0 +1,2417 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "761089c1-ad2e-45e1-9f04-6132c6fbdc99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8f09c5ee-2a2e-438a-aa99-9a68cfd85d42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7aa5b928-d9be-4ac9-a95b-86e40534c895" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174814Z:7aa5b928-d9be-4ac9-a95b-86e40534c895" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:14 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws\",\r\n \"location\": \"eastus2euap\",\r\n \"name\": \"pkanekalws\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9df6a22b-e965-4a48-8285-a81155127a7a\",\r\n \"tenantId\": \"33e01921-4d64-4f8c-a055-5bdaffd5e33d\"\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f086dc8c7-04c8-4b81-8993-892d648babe3%2fresourceGroups%2fpkanekalrg%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fpkanekalws\",\r\n \"sql\": \"pkanekalws.sql.azuresynapse.net\",\r\n \"dev\": \"https://pkanekalws.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"pkanekalws-ondemand.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"workspacemanagedrg-aef91a3c-b3ab-48ce-b6eb-231a764eaf83\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://pkadls.dfs.core.windows.net\",\r\n \"filesystem\": \"pkfs\"\r\n },\r\n \"sqlAdministratorLogin\": \"sqladminuser\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"0b9eed9e-06f6-44de-a8a1-baaf70cfe141\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29769172-d1ea-4328-9bbe-faf7db970308" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1d46b99-e316-4aa4-8cec-9efffc1ebc0f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a09c6a64-1123-47ee-b5de-2dfa3751192f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174815Z:a09c6a64-1123-47ee-b5de-2dfa3751192f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:14 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws\",\r\n \"location\": \"eastus2euap\",\r\n \"name\": \"pkanekalws\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9df6a22b-e965-4a48-8285-a81155127a7a\",\r\n \"tenantId\": \"33e01921-4d64-4f8c-a055-5bdaffd5e33d\"\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f086dc8c7-04c8-4b81-8993-892d648babe3%2fresourceGroups%2fpkanekalrg%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fpkanekalws\",\r\n \"sql\": \"pkanekalws.sql.azuresynapse.net\",\r\n \"dev\": \"https://pkanekalws.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"pkanekalws-ondemand.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"workspacemanagedrg-aef91a3c-b3ab-48ce-b6eb-231a764eaf83\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://pkadls.dfs.core.windows.net\",\r\n \"filesystem\": \"pkfs\"\r\n },\r\n \"sqlAdministratorLogin\": \"sqladminuser\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"0b9eed9e-06f6-44de-a8a1-baaf70cfe141\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7db0c91-ea7e-4749-8669-d37d0be59d93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "dc823693-7112-4973-b29b-0988de2bb812" + ], + "x-ms-correlation-request-id": [ + "dc823693-7112-4973-b29b-0988de2bb812" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174814Z:dc823693-7112-4973-b29b-0988de2bb812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "236" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b84b4fb4-b013-428c-9a80-503c86c01336" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "15a25e86-e5d7-4375-b58b-a5f8cd15eeaa" + ], + "x-ms-correlation-request-id": [ + "15a25e86-e5d7-4375-b58b-a5f8cd15eeaa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174815Z:15a25e86-e5d7-4375-b58b-a5f8cd15eeaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "236" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b070b6c-9328-4660-a581-b8838d1ab4bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "fa20950b-a868-403d-9f55-56c85edde330" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174924Z:fa20950b-a868-403d-9f55-56c85edde330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:24 GMT" + ], + "Content-Length": [ + "612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DW500f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW500f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d650dc1-4ded-4d33-9055-e21b4a88ef1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c53eb89-b840-4b6f-9acf-00a6123a2b11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "daffe220-e38e-4d08-983b-866e90452097" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174925Z:daffe220-e38e-4d08-983b-866e90452097" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:24 GMT" + ], + "Content-Length": [ + "612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DW500f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW500f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5aa6b9ba-9acd-4243-9e98-19e0500892b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56fd06ed-1283-41b7-8c26-f01b2b7b2250" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "78831477-9b36-443a-9b65-595cbfbe2579" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174925Z:78831477-9b36-443a-9b65-595cbfbe2579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:24 GMT" + ], + "Content-Length": [ + "612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DW500f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW500f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f6c62e9-ce16-45df-8145-c1fad9ce0651" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a25b5275-ac42-4477-8b19-96cbdfc99cf7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "824ac148-3a33-426c-90d2-667597b63e43" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174925Z:824ac148-3a33-426c-90d2-667597b63e43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:24 GMT" + ], + "Content-Length": [ + "612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DW500f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW500f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7df5762a-b8aa-4474-97d8-84d92e619245" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "5e2be33f-2897-4717-8c68-50899bc2ea08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174931Z:5e2be33f-2897-4717-8c68-50899bc2ea08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:31 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DW1000f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW1000f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be90a42d-ec8c-473c-b314-8a9835b72b4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07ec7bf2-40eb-4ba1-af60-744470e7199e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "cf2c7077-490c-4775-bbcf-50a3419632af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175232Z:cf2c7077-490c-4775-bbcf-50a3419632af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:31 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DW1000f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW1000f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d43f6a1c-fc4d-40b5-88ba-04fc285e6aad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "66243c4b-107c-426f-922e-e90b7ea6548b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "722bb098-a8a5-494c-a37e-34c317440aa3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175232Z:722bb098-a8a5-494c-a37e-34c317440aa3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:32 GMT" + ], + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"DW1000f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW1000f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "decc98fb-17e7-44dd-862a-a5fd7baffc05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "29ebea00-0443-4fd0-8041-6dfbd263f38b" + ], + "x-ms-correlation-request-id": [ + "29ebea00-0443-4fd0-8041-6dfbd263f38b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175725Z:29ebea00-0443-4fd0-8041-6dfbd263f38b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:57:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "236" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87ea2af5-ef8f-4084-bea1-7fd7c25bec8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ece9b7f5-0739-4a5f-bb6e-3cd74f374c26" + ], + "x-ms-correlation-request-id": [ + "ece9b7f5-0739-4a5f-bb6e-3cd74f374c26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175725Z:ece9b7f5-0739-4a5f-bb6e-3cd74f374c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:57:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "236" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931' under resource group 'pkanekalrg' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DW500f\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3a942dd-bd95-4c11-b4a2-081e1d4e7338" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "73" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolOperationResults/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview" + ], + "x-ms-request-id": [ + "b3f80243-07c8-42b4-b0d0-804c1029d338" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2fac925e-54f9-4200-a21e-731ca7e28601" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174819Z:2fac925e-54f9-4200-a21e-731ca7e28601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:18 GMT" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"UpsertVDWPool\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi9iM2Y4MDI0My0wN2M4LTQyYjQtYjBkMC04MDRjMTAyOWQzMzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "b7cca16f-be53-42e2-94b9-ca8f19f83707" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "5237a207-057c-4e7c-90c9-2db8e2729087" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174820Z:5237a207-057c-4e7c-90c9-2db8e2729087" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b3f80243-07c8-42b4-b0d0-804c1029d338\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi9iM2Y4MDI0My0wN2M4LTQyYjQtYjBkMC04MDRjMTAyOWQzMzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "10e90440-0976-45ca-a942-da26268083f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "7cfe6bc4-5caf-4dd9-9bee-ebf14bc27425" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174822Z:7cfe6bc4-5caf-4dd9-9bee-ebf14bc27425" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:21 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b3f80243-07c8-42b4-b0d0-804c1029d338\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi9iM2Y4MDI0My0wN2M4LTQyYjQtYjBkMC04MDRjMTAyOWQzMzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "415d682a-bc10-42e6-8309-f827b408377d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a4627cae-5b61-4d11-a3e6-56462d061efb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174823Z:a4627cae-5b61-4d11-a3e6-56462d061efb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:22 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b3f80243-07c8-42b4-b0d0-804c1029d338\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi9iM2Y4MDI0My0wN2M4LTQyYjQtYjBkMC04MDRjMTAyOWQzMzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "4889c4cf-d5ac-49de-b1cd-0ba7edfbfd75" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "02eae113-9ceb-4b91-8982-efe125b6ac5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174824Z:02eae113-9ceb-4b91-8982-efe125b6ac5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:23 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b3f80243-07c8-42b4-b0d0-804c1029d338\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi9iM2Y4MDI0My0wN2M4LTQyYjQtYjBkMC04MDRjMTAyOWQzMzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "929f2219-bb29-4197-8c6b-ca25d7ad4bf1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "de7e2686-6af9-49de-827d-9d793005f722" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174844Z:de7e2686-6af9-49de-827d-9d793005f722" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:48:44 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b3f80243-07c8-42b4-b0d0-804c1029d338\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi9iM2Y4MDI0My0wN2M4LTQyYjQtYjBkMC04MDRjMTAyOWQzMzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "f06efb69-5c8c-41a9-8da2-79acf44a13fe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a16d8c82-9718-45db-8e25-3f0116ecb3cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174904Z:a16d8c82-9718-45db-8e25-3f0116ecb3cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:04 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b3f80243-07c8-42b4-b0d0-804c1029d338\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/b3f80243-07c8-42b4-b0d0-804c1029d338?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi9iM2Y4MDI0My0wN2M4LTQyYjQtYjBkMC04MDRjMTAyOWQzMzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "28d7cb3f-dd30-4a90-9e1b-ecbf730dc766" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "2328fcc1-1e5f-4afe-8617-0b7fe52cd438" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174924Z:2328fcc1-1e5f-4afe-8617-0b7fe52cd438" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:24 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"b3f80243-07c8-42b4-b0d0-804c1029d338\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-06T17:48:18.54Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DW1000f\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2a6c2cd-89f8-41f8-801b-c2c88137a13a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "44" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolOperationResults/45e2d508-956b-4187-9492-6d7afba4988b?api-version=2020-04-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/45e2d508-956b-4187-9492-6d7afba4988b?api-version=2020-04-01-preview" + ], + "x-ms-request-id": [ + "45e2d508-956b-4187-9492-6d7afba4988b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7819fe37-f8fa-43dd-9a35-b6e7b5475d2e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174927Z:7819fe37-f8fa-43dd-9a35-b6e7b5475d2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:26 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"ResizeVDWPoolBackend\",\r\n \"startTime\": \"2020-08-06T17:49:26.077Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/45e2d508-956b-4187-9492-6d7afba4988b?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi80NWUyZDUwOC05NTZiLTQxODctOTQ5Mi02ZDdhZmJhNDk4OGI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "3c10b8e6-2a31-4a42-bf6b-f5d3b6d0746a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "c3e0de8e-046b-4cf2-9e5c-3c0efc4e0f9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174928Z:c3e0de8e-046b-4cf2-9e5c-3c0efc4e0f9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:27 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"45e2d508-956b-4187-9492-6d7afba4988b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:49:26.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/45e2d508-956b-4187-9492-6d7afba4988b?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi80NWUyZDUwOC05NTZiLTQxODctOTQ5Mi02ZDdhZmJhNDk4OGI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "b93b4805-f343-4d4b-ab0d-4c70053b3f71" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "07d6e763-c137-4d15-aeb8-195bd439200c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174929Z:07d6e763-c137-4d15-aeb8-195bd439200c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:28 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"45e2d508-956b-4187-9492-6d7afba4988b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:49:26.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/45e2d508-956b-4187-9492-6d7afba4988b?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi80NWUyZDUwOC05NTZiLTQxODctOTQ5Mi02ZDdhZmJhNDk4OGI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "8a51fe51-ccab-41a4-8a26-2a5740b54bf1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "e672cff1-b8cf-4bfb-ad9f-751a1d0143cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174930Z:e672cff1-b8cf-4bfb-ad9f-751a1d0143cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:29 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"45e2d508-956b-4187-9492-6d7afba4988b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:49:26.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/45e2d508-956b-4187-9492-6d7afba4988b?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi80NWUyZDUwOC05NTZiLTQxODctOTQ5Mi02ZDdhZmJhNDk4OGI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "18a2f25b-d750-4cca-b683-f24dbfd668c7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "08ce4385-e2fb-46cb-939b-f2f5791147f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T174931Z:08ce4385-e2fb-46cb-939b-f2f5791147f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:49:30 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"45e2d508-956b-4187-9492-6d7afba4988b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-06T17:49:26.077Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scz9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e82a6f3f-0842-4018-bdbd-ac24d6f5ae9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ac294d6e-6398-4cfd-9423-6483562a930f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "0566e657-0589-4ab1-b06e-b1de1db3a1ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175232Z:0566e657-0589-4ab1-b06e-b1de1db3a1ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:32 GMT" + ], + "Content-Length": [ + "1213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"DW1000f\",\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-08-06T17:48:18.697Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-08-06T17:48:18.697Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"sqlPoolGuid\": \"c3f1dfe0-a7df-4664-a2a7-41fab9804d45\",\r\n \"currentServiceObjectiveName\": \"DW1000f\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n },\r\n {\r\n \"sku\": {\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2020-07-22T17:10:52.753Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2020-07-22T17:10:52.753Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Offline\",\r\n \"sqlPoolGuid\": \"bf238974-73a5-47d0-b05f-c51eeef0c2dc\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/pkanekalws-ondemand\",\r\n \"name\": \"pkanekalws-ondemand\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/workspaces/pkanekalws/sqlPools/ps931?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL3dvcmtzcGFjZXMvcGthbmVrYWx3cy9zcWxQb29scy9wczkzMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83d0eb33-efb8-4df3-90dc-e0211dff80fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolOperationResults/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview" + ], + "Retry-After": [ + "1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview" + ], + "x-ms-request-id": [ + "77d93813-e4b1-4fc7-8e2e-f4ee6a887bee" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "572f2547-d38b-41a7-a6d9-796f8d0ab5f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175234Z:572f2547-d38b-41a7-a6d9-796f8d0ab5f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:33 GMT" + ], + "Content-Length": [ + "66" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"DropVDWPool\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "67d85d6d-016b-453e-b6e6-cbc185fb04b9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "fc4c4e0f-cc8b-413f-b4a1-362ab079e04f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175235Z:fc4c4e0f-cc8b-413f-b4a1-362ab079e04f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:35 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "32c1f9d9-7468-4df7-9ac5-a9144e40de18" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "f92472b4-c3eb-4b7e-b76c-eed16c4f7a25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175236Z:f92472b4-c3eb-4b7e-b76c-eed16c4f7a25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:36 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "c1287eb3-d0cb-49e2-bb13-7ac38b244556" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "9b2e2de6-9661-4fd1-b33e-40ec225e3ef8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175237Z:9b2e2de6-9661-4fd1-b33e-40ec225e3ef8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:37 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "6f900bbe-1c40-4f0b-ae64-1f518e3449f3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "8a8ee0b0-5d1b-4c04-86e4-f05e7709357e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175238Z:8a8ee0b0-5d1b-4c04-86e4-f05e7709357e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "5ff5f402-fdca-4c22-8dd2-c19eb280df4a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "65c5e11b-417b-4296-8846-427fa2ec0e91" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175259Z:65c5e11b-417b-4296-8846-427fa2ec0e91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:52:58 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "87fb4f55-491c-4422-bd90-78906282497e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1e5618fe-715b-4e8c-a854-2789373aefcb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175319Z:1e5618fe-715b-4e8c-a854-2789373aefcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:53:18 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6f2190e0-7edd-4210-bbca-681236c80cf2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "c867c501-ced6-435f-a816-afb877e0fdef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175339Z:c867c501-ced6-435f-a816-afb877e0fdef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:53:38 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "eb4b1240-a228-4904-8c4a-ea3ba75d1868" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "d419966b-7afb-4220-a8d6-97c166e7d87c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175354Z:d419966b-7afb-4220-a8d6-97c166e7d87c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:53:53 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "606ec96a-83db-401d-9e69-4adcfd6bfbf0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "09435e7f-5bfb-402a-be1c-d6813a224313" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175409Z:09435e7f-5bfb-402a-be1c-d6813a224313" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:54:09 GMT" + ], + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolAzureAsyncOperation/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sQXp1cmVBc3luY09wZXJhdGlvbi83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "17064b98-a2ed-4c2d-aa3e-ec8481f25081" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "02c7be6b-69a6-469f-940a-648ff7408f25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175424Z:02c7be6b-69a6-469f-940a-648ff7408f25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:54:24 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77d93813-e4b1-4fc7-8e2e-f4ee6a887bee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-06T17:52:33.223Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups/pkanekalrg/providers/Microsoft.Synapse/locations/eastus2euap/sqlPoolOperationResults/77d93813-e4b1-4fc7-8e2e-f4ee6a887bee?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2ZGM4YzctMDRjOC00YjgxLTg5OTMtODkyZDY0OGJhYmUzL3Jlc291cmNlR3JvdXBzL3BrYW5la2FscmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TeW5hcHNlL2xvY2F0aW9ucy9lYXN0dXMyZXVhcC9zcWxQb29sT3BlcmF0aW9uUmVzdWx0cy83N2Q5MzgxMy1lNGIxLTRmYzctOGUyZS1mNGVlNmE4ODdiZWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Synapse.SynapseSqlV3ManagementClient/1.0.0.prevtest.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2088a863-8ca3-47b8-884b-b5b0bd760f47" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "ab801e20-6788-41fb-9913-65de20cd1e19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200806T175424Z:ab801e20-6788-41fb-9913-65de20cd1e19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 06 Aug 2020 17:54:24 GMT" + ], + "Content-Length": [ + "505" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"tier\": \"Synapse\"\r\n },\r\n \"kind\": \"v3\",\r\n \"systemData\": {\r\n \"createdBy\": \"string\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"0001-01-01T00:00:00Z\",\r\n \"lastModifiedBy\": \"string\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Unknown\",\r\n \"sqlPoolGuid\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/086dc8c7-04c8-4b81-8993-892d648babe3/resourceGroups//providers/Microsoft.Synapse/workspaces//sqlPools/ps931\",\r\n \"name\": \"ps931\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "": [ + "ps931" + ] + }, + "Variables": { + "SubscriptionId": "086dc8c7-04c8-4b81-8993-892d648babe3", + "resourceGroupName": "pkanekalrg", + "workspaceName": "pkanekalws" + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse.Test/Synapse.Test.csproj b/src/Synapse/Synapse.Test/Synapse.Test.csproj index e4dceabf4b5d..b2cc212bac17 100644 --- a/src/Synapse/Synapse.Test/Synapse.Test.csproj +++ b/src/Synapse/Synapse.Test/Synapse.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Synapse/Synapse/Az.Synapse.psd1 b/src/Synapse/Synapse/Az.Synapse.psd1 index fb6e1154982a..931845e7e888 100644 --- a/src/Synapse/Synapse/Az.Synapse.psd1 +++ b/src/Synapse/Synapse/Az.Synapse.psd1 @@ -92,8 +92,10 @@ CmdletsToExport = 'Get-AzSynapseSparkJob', 'Stop-AzSynapseSparkJob', 'New-AzSynapseFirewallRule', 'Remove-AzSynapseFirewallRule', 'Get-AzSynapseFirewallRule', 'Update-AzSynapseFirewallRule', 'Get-AzSynapseRoleAssignment', 'New-AzSynapseRoleAssignment', - 'Remove-AzSynapseRoleAssignment', 'Get-AzSynapseRoleDefinition' - + 'Remove-AzSynapseRoleAssignment', 'Get-AzSynapseRoleDefinition', + 'Get-AzSynapseSqlDatabase', 'New-AzSynapseSqlDatabase', + 'Remove-AzSynapseSqlDatabase', 'Update-AzSynapseSqlDatabase', + 'Test-AzSynapseSqlDatabase' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Synapse/Synapse/ChangeLog.md b/src/Synapse/Synapse/ChangeLog.md index 4d7e4af0a413..75c08f844397 100644 --- a/src/Synapse/Synapse/ChangeLog.md +++ b/src/Synapse/Synapse/ChangeLog.md @@ -19,6 +19,17 @@ --> ## Upcoming Release +* Added support for gen3 Sql Pools + - For `Get-AzSynapseSqlPool`, `New-AzSynapseSqlPool`, ` Remove-AzSynapseSqlPool`, ` Test-AzSynapseSqlPool` and `Update-AzSynapseSqlPool` cmdlet + - Add Version parameter to cmdlets to specify version 3. + - For this release, these cmdlets will not work unless a customer's subscription is on the allowlist. +* Added support for gen3 Sql Databases + - Add `Get-AzSynapseSqlDatabase` cmdlet + - Add `New-AzSynapseSqlDatabase` cmdlet + - Add `Remove-AzSynapseSqlDatabase` cmdlet + - Add `Update-AzSynapseSqlDatabase` cmdlet + - Add `Test-AzSynapseSqlDatabase` cmdlet + ## Version 0.1.2 * Changed some property names and types of output for the following cmdlets diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/GetAzureSynapseSqlDatabase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/GetAzureSynapseSqlDatabase.cs new file mode 100644 index 000000000000..f178205f0bde --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/GetAzureSynapseSqlDatabase.cs @@ -0,0 +1,78 @@ +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + SynapseConstants.SqlDatabase, + DefaultParameterSetName = GetByNameParameterSet)] + [OutputType(typeof(PSSynapseSqlDatabase))] + public class GetAzureSynapseSqlDatabase : SynapseManagementCmdletBase + { + private const string GetByNameParameterSet = "GetByNameParameterSet"; + private const string GetByParentObjectParameterSet = "GetByParentObjectParameterSet"; + private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet"; + + [Parameter(Mandatory = false, ParameterSetName = GetByNameParameterSet, + HelpMessage = HelpMessages.ResourceGroupName)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet, + HelpMessage = HelpMessages.WorkspaceName)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = GetByNameParameterSet, HelpMessage = HelpMessages.SqlDatabaseName)] + [Parameter(Mandatory = false, ParameterSetName = GetByParentObjectParameterSet, HelpMessage = HelpMessages.SqlDatabaseName)] + [ResourceNameCompleter( + ResourceTypes.SqlDatabase, + nameof(ResourceGroupName), + nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = GetByParentObjectParameterSet, HelpMessage = HelpMessages.WorkspaceObject)] + [ValidateNotNull] + public PSSynapseWorkspace WorkspaceObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = false, ParameterSetName = GetByResourceIdParameterSet, HelpMessage = HelpMessages.SqlDatabaseResourceId)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.Name = resourceIdentifier.ResourceName; + } + + if (this.IsParameterBound(c => c.WorkspaceObject)) + { + this.ResourceGroupName = new ResourceIdentifier(this.WorkspaceObject.Id).ResourceGroupName; + this.WorkspaceName = this.WorkspaceObject.Name; + } + + if (!string.IsNullOrEmpty(this.Name)) + { + var result = new PSSynapseSqlDatabase(this.SynapseAnalyticsClient.GetSqlDatabase(this.ResourceGroupName, this.WorkspaceName, this.Name)); + WriteObject(result); + } + else + { + var result = this.SynapseAnalyticsClient.ListSqlDatabases(this.ResourceGroupName, this.WorkspaceName).Select(r => new PSSynapseSqlDatabase(r)); + WriteObject(result, true); + } + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/NewAzureSynapseSqlDatabase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/NewAzureSynapseSqlDatabase.cs new file mode 100644 index 000000000000..a6dcea15a771 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/NewAzureSynapseSqlDatabase.cs @@ -0,0 +1,112 @@ +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.Exceptions; +using Microsoft.Azure.Commands.Synapse.Properties; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Synapse.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections; +using System.Management.Automation; +using Sku = Microsoft.Azure.Management.Synapse.Models.Sku; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + SynapseConstants.SqlDatabase, DefaultParameterSetName = CreateByNameParameterSet, SupportsShouldProcess = true)] + [OutputType(typeof(PSSynapseSqlDatabase))] + public class NewAzureSynapseSqlDatabase : SynapseManagementCmdletBase + { + // Default + private const string CreateByNameParameterSet = "CreateByNameParameterSet"; + private const string CreateByParentObjectParameterSet = "CreateByParentObjectParameterSet"; + + [Parameter(ParameterSetName = CreateByNameParameterSet, + Mandatory = false, HelpMessage = HelpMessages.ResourceGroupName)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(ParameterSetName = CreateByNameParameterSet, + Mandatory = true, HelpMessage = HelpMessages.WorkspaceName)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + [Parameter(ValueFromPipeline = true, ParameterSetName = CreateByParentObjectParameterSet, + Mandatory = true, HelpMessage = HelpMessages.WorkspaceObject)] + [ValidateNotNull] + public PSSynapseWorkspace WorkspaceObject { get; set; } + + [Parameter(Mandatory = true, HelpMessage = HelpMessages.SqlDatabaseName)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, HelpMessage = HelpMessages.Tag)] + [ValidateNotNull] + public Hashtable Tag { get; set; } + + [Parameter(ParameterSetName = CreateByNameParameterSet, Mandatory = false, HelpMessage = HelpMessages.Collation)] + [Parameter(ParameterSetName = CreateByParentObjectParameterSet, Mandatory = false, HelpMessage = HelpMessages.Collation)] + [ValidateNotNullOrEmpty] + public string Collation { get; set; } + + [Parameter(ParameterSetName = CreateByNameParameterSet, Mandatory = false, HelpMessage = HelpMessages.MaxSizeInBytes)] + [Parameter(ParameterSetName = CreateByParentObjectParameterSet, Mandatory = false, HelpMessage = HelpMessages.MaxSizeInBytes)] + [ValidateNotNullOrEmpty] + public long MaxSizeInBytes { get; set; } + + [Parameter(Mandatory = false, HelpMessage = HelpMessages.AsJob)] + public SwitchParameter AsJob { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.WorkspaceObject)) + { + this.ResourceGroupName = new ResourceIdentifier(this.WorkspaceObject.Id).ResourceGroupName; + this.WorkspaceName = this.WorkspaceObject.Name; + } + + if (string.IsNullOrEmpty(this.ResourceGroupName)) + { + this.ResourceGroupName = this.SynapseAnalyticsClient.GetResourceGroupByWorkspaceName(this.WorkspaceName); + } + + var existingWorkspace = this.SynapseAnalyticsClient.GetWorkspaceOrDefault(this.ResourceGroupName, this.WorkspaceName); + if (existingWorkspace == null) + { + throw new SynapseException(string.Format(Resources.WorkspaceDoesNotExist, this.WorkspaceName)); + } + + var existingSqlDatabase = this.SynapseAnalyticsClient.GetSqlDatabaseOrDefault(this.ResourceGroupName, this.WorkspaceName, this.Name); + if (existingSqlDatabase != null) + { + throw new SynapseException(string.Format(Resources.SynapseSqlDatabaseExists, this.Name, this.ResourceGroupName, this.WorkspaceName)); + } + + var createParams = new SqlDatabase + { + Location = existingWorkspace.Location, + Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true) + }; + + switch (this.ParameterSetName) + { + case CreateByNameParameterSet: + case CreateByParentObjectParameterSet: + createParams.MaxSizeBytes = this.MaxSizeInBytes; + createParams.Collation = this.IsParameterBound(c => c.Collation) ? this.Collation : SynapseConstants.DefaultCollation; + break; + + default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + } + + if (this.ShouldProcess(this.Name, string.Format(Resources.CreatingSynapseSqlDatabase, this.ResourceGroupName, this.WorkspaceName, this.Name))) + { + var result = new PSSynapseSqlDatabase(this.SynapseAnalyticsClient.CreateSqlDatabase(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); + WriteObject(result); + } + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/RemoveAzureSynapseSqlDatabase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/RemoveAzureSynapseSqlDatabase.cs new file mode 100644 index 000000000000..665aee83b10a --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/RemoveAzureSynapseSqlDatabase.cs @@ -0,0 +1,102 @@ +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Properties; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + SynapseConstants.SqlDatabase, DefaultParameterSetName = DeleteByNameParameterSet, SupportsShouldProcess = true)] + [OutputType(typeof(bool))] + public class RemoveAzureSynapseSqlDatabase : SynapseManagementCmdletBase + { + private const string DeleteByNameParameterSet = "DeleteByNameParameterSet"; + private const string DeleteByParentObjectParameterSet = "DeleteByParentObjectParameterSet"; + private const string DeleteByInputObjectParameterSet = "DeleteByInputObjectParameterSet"; + private const string DeleteByResourceIdParameterSet = "DeleteByResourceIdParameterSet"; + + [Parameter(Mandatory = false, ParameterSetName = DeleteByNameParameterSet, HelpMessage = HelpMessages.ResourceGroupName)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet, HelpMessage = HelpMessages.WorkspaceName)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet, HelpMessage = HelpMessages.SqlDatabaseName)] + [Parameter(Mandatory = true, ParameterSetName = DeleteByParentObjectParameterSet, HelpMessage = HelpMessages.SqlDatabaseName)] + [ResourceNameCompleter( + ResourceTypes.SqlDatabase, + nameof(ResourceGroupName), + nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(ValueFromPipeline = true, ParameterSetName = DeleteByParentObjectParameterSet, + Mandatory = true, HelpMessage = HelpMessages.WorkspaceObject)] + [ValidateNotNull] + public PSSynapseWorkspace WorkspaceObject { get; set; } + + [Parameter(ValueFromPipeline = true, ParameterSetName = DeleteByInputObjectParameterSet, + Mandatory = true, HelpMessage = HelpMessages.SqlDatabaseObject)] + [ValidateNotNull] + public PSSynapseSqlDatabase InputObject { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = DeleteByResourceIdParameterSet, + Mandatory = true, HelpMessage = HelpMessages.SqlDatabaseResourceId)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = false, HelpMessage = HelpMessages.PassThru)] + public SwitchParameter PassThru { get; set; } + + [Parameter(Mandatory = false, HelpMessage = HelpMessages.AsJob)] + public SwitchParameter AsJob { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.WorkspaceObject)) + { + this.ResourceGroupName = new ResourceIdentifier(this.WorkspaceObject.Id).ResourceGroupName; + this.WorkspaceName = this.WorkspaceObject.Name; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + var resourceIdentifier = new ResourceIdentifier(this.InputObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.Name = resourceIdentifier.ResourceName; + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.Name = resourceIdentifier.ResourceName; + } + + if (string.IsNullOrEmpty(this.ResourceGroupName)) + { + this.ResourceGroupName = this.SynapseAnalyticsClient.GetResourceGroupByWorkspaceName(this.WorkspaceName); + } + + if (this.ShouldProcess(this.Name, string.Format(Resources.RemovingSynapseSqlDatabase, this.Name, this.ResourceGroupName, this.WorkspaceName))) + { + this.SynapseAnalyticsClient.DeleteSqlDatabase(this.ResourceGroupName, this.WorkspaceName, this.Name); + + if (this.PassThru.IsPresent) + { + WriteObject(true); + } + } + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/TestAzureSynapseSqlDatabase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/TestAzureSynapseSqlDatabase.cs new file mode 100644 index 000000000000..3aab48ad9114 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/TestAzureSynapseSqlDatabase.cs @@ -0,0 +1,54 @@ +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet(VerbsDiagnostic.Test, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + SynapseConstants.SqlDatabase, DefaultParameterSetName = TestByNameParameterSet)] + [OutputType(typeof(bool))] + public class TestAzureSynapseSqlDatabase : SynapseManagementCmdletBase + { + private const string TestByNameParameterSet = "TestByNameParameterSet"; + private const string TestByParentObjectParameterSet = "TestByParentObjectParameterSet"; + + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, ParameterSetName = TestByNameParameterSet, + HelpMessage = HelpMessages.ResourceGroupName)] + [ResourceGroupCompleter()] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = true, ParameterSetName = TestByNameParameterSet, + HelpMessage = HelpMessages.WorkspaceName)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = true, + HelpMessage = HelpMessages.SqlDatabaseName)] + [ResourceNameCompleter( + ResourceTypes.SqlDatabase, + nameof(ResourceGroupName), + nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(ValueFromPipeline = true, ParameterSetName = TestByParentObjectParameterSet, + Mandatory = true, HelpMessage = HelpMessages.WorkspaceObject)] + [ValidateNotNull] + public PSSynapseWorkspace WorkspaceObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.WorkspaceObject)) + { + this.ResourceGroupName = new ResourceIdentifier(this.WorkspaceObject.Id).ResourceGroupName; + this.WorkspaceName = this.WorkspaceObject.Name; + } + + WriteObject(SynapseAnalyticsClient.TestSqlDatabase(ResourceGroupName, WorkspaceName, Name)); + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/UpdateAzureSynapseSqlDatabase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/UpdateAzureSynapseSqlDatabase.cs new file mode 100644 index 000000000000..2d7e2352e779 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlDatabase/UpdateAzureSynapseSqlDatabase.cs @@ -0,0 +1,159 @@ +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.Exceptions; +using Microsoft.Azure.Commands.Synapse.Properties; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Synapse.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.Collections; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + SynapseConstants.SqlDatabase, + DefaultParameterSetName = UpdateByNameParameterSet, SupportsShouldProcess = true)] + [OutputType(typeof(PSSynapseSqlDatabase))] + public class UpdateAzureSynapseSqlDatabase : SynapseManagementCmdletBase + { + private const string UpdateByNameParameterSet = "UpdateByNameParameterSet"; + private const string UpdateByParentObjectParameterSet = "UpdateByParentObjectParameterSet"; + private const string UpdateByInputObjectParameterSet = "UpdateByInputObjectParameterSet"; + private const string UpdateByResourceIdParameterSet = "UpdateByResourceIdParameterSet"; + + [Parameter(Mandatory = false, ParameterSetName = UpdateByNameParameterSet, HelpMessage = HelpMessages.ResourceGroupName)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet, HelpMessage = HelpMessages.WorkspaceName)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet, HelpMessage = HelpMessages.SqlDatabaseName)] + [Parameter(Mandatory = true, ParameterSetName = UpdateByParentObjectParameterSet, HelpMessage = HelpMessages.SqlDatabaseName)] + [ResourceNameCompleter( + ResourceTypes.SqlDatabase, + nameof(ResourceGroupName), + nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(ParameterSetName = UpdateByNameParameterSet, Mandatory = false, HelpMessage = HelpMessages.MaxSizeInBytes)] + [Parameter(ParameterSetName = UpdateByParentObjectParameterSet, Mandatory = false, HelpMessage = HelpMessages.MaxSizeInBytes)] + [ValidateNotNullOrEmpty] + public long MaxSizeInBytes { get; set; } + + [Parameter(ValueFromPipeline = true, ParameterSetName = UpdateByParentObjectParameterSet, + Mandatory = true, HelpMessage = HelpMessages.WorkspaceObject)] + [ValidateNotNull] + public PSSynapseWorkspace WorkspaceObject { get; set; } + + [Parameter(ValueFromPipeline = true, ParameterSetName = UpdateByInputObjectParameterSet, Mandatory = true, + HelpMessage = HelpMessages.SqlDatabaseObject)] + [ValidateNotNull] + public PSSynapseSqlDatabase InputObject { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = UpdateByResourceIdParameterSet, + Mandatory = true, HelpMessage = HelpMessages.SqlDatabaseResourceId)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = UpdateByNameParameterSet, + Mandatory = false, HelpMessage = HelpMessages.Tag)] + [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = UpdateByParentObjectParameterSet, + Mandatory = false, HelpMessage = HelpMessages.Tag)] + [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = UpdateByInputObjectParameterSet, + Mandatory = false, HelpMessage = HelpMessages.Tag)] + [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = UpdateByResourceIdParameterSet, + Mandatory = false, HelpMessage = HelpMessages.Tag)] + [ValidateNotNull] + public Hashtable Tag { get; set; } + + [Parameter(Mandatory = false, HelpMessage = HelpMessages.PassThru)] + public SwitchParameter PassThru { get; set; } + + [Parameter(Mandatory = false, HelpMessage = HelpMessages.AsJob)] + public SwitchParameter AsJob { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.WorkspaceObject)) + { + this.ResourceGroupName = new ResourceIdentifier(this.WorkspaceObject.Id).ResourceGroupName; + this.WorkspaceName = this.WorkspaceObject.Name; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + var resourceIdentifier = new ResourceIdentifier(this.InputObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.Name = resourceIdentifier.ResourceName; + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.Name = resourceIdentifier.ResourceName; + } + + if (string.IsNullOrEmpty(this.ResourceGroupName)) + { + this.ResourceGroupName = this.SynapseAnalyticsClient.GetResourceGroupByWorkspaceName(this.WorkspaceName); + } + + SqlDatabase existingSqlDatabase = null; + try + { + existingSqlDatabase = this.SynapseAnalyticsClient.GetSqlDatabase(this.ResourceGroupName, this.WorkspaceName, this.Name); + } + catch + { + existingSqlDatabase = null; + } + + if (existingSqlDatabase == null) + { + throw new SynapseException(string.Format(Resources.FailedToDiscoverSqlDatabase, this.Name, this.ResourceGroupName, this.WorkspaceName)); + } + + switch (this.ParameterSetName) + { + case UpdateByNameParameterSet: + case UpdateByInputObjectParameterSet: + case UpdateByParentObjectParameterSet: + case UpdateByResourceIdParameterSet: + UpdateSqlDatabase(existingSqlDatabase); + break; + + default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + } + } + + private void UpdateSqlDatabase(SqlDatabase existingSqlDatabase) + { + SqlDatabaseUpdate SqlDatabaseUpdate = new SqlDatabaseUpdate + { + Tags = this.IsParameterBound(c => c.Tag) ? TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true) : existingSqlDatabase.Tags, + MaxSizeBytes = this.IsParameterBound(c => c.MaxSizeInBytes) ? this.MaxSizeInBytes : existingSqlDatabase.MaxSizeBytes, + }; + + if (this.ShouldProcess(this.Name, string.Format(Resources.UpdatingSynapseSqlDatabase, this.Name, this.ResourceGroupName, this.WorkspaceName))) + { + this.SynapseAnalyticsClient.UpdateSqlDatabase(this.ResourceGroupName, this.WorkspaceName, this.Name, SqlDatabaseUpdate); + if (this.PassThru.IsPresent) + { + var result = this.SynapseAnalyticsClient.GetSqlDatabase(this.ResourceGroupName, this.WorkspaceName, this.Name); + WriteObject(result); + } + } + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs index f1901310ff3f..0372af1accac 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs @@ -38,6 +38,10 @@ public class GetAzureSynapseSqlPool : SynapseManagementCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } + [Parameter(Mandatory = false, HelpMessage = HelpMessages.SqlPoolVersion)] + [ValidateNotNullOrEmpty] + public int Version { get; set; } + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = GetByParentObjectParameterSet, HelpMessage = HelpMessages.WorkspaceObject)] [ValidateNotNull] public PSSynapseWorkspace WorkspaceObject { get; set; } @@ -63,15 +67,31 @@ public override void ExecuteCmdlet() this.WorkspaceName = this.WorkspaceObject.Name; } - if (!string.IsNullOrEmpty(this.Name)) + if (this.Version == 3) { - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); - WriteObject(result); + if (!string.IsNullOrEmpty(this.Name)) + { + var result = new PSSynapseSqlPoolV3(this.SynapseAnalyticsClient.GetSqlPoolV3(this.ResourceGroupName, this.WorkspaceName, this.Name)); + WriteObject(result); + } + else + { + var result = this.SynapseAnalyticsClient.ListSqlPoolsV3(this.ResourceGroupName, this.WorkspaceName).Select(r => new PSSynapseSqlPoolV3(r)); + WriteObject(result, true); + } } else { - var result = this.SynapseAnalyticsClient.ListSqlPools(this.ResourceGroupName, this.WorkspaceName).Select(r => new PSSynapseSqlPool(r)); - WriteObject(result, true); + if (!string.IsNullOrEmpty(this.Name)) + { + var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); + WriteObject(result); + } + else + { + var result = this.SynapseAnalyticsClient.ListSqlPools(this.ResourceGroupName, this.WorkspaceName).Select(r => new PSSynapseSqlPool(r)); + WriteObject(result, true); + } } } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs index f38a8aa2cc62..f99ae563be5e 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs @@ -22,7 +22,7 @@ public class NewAzureSynapseSqlPool : SynapseManagementCmdletBase private const string CreateByNameParameterSet = "CreateByNameParameterSet"; private const string CreateByParentObjectParameterSet = "CreateByParentObjectParameterSet"; - // Create from bakcup + // Create from backup private const string CreateFromBackupIdByNameParameterSet = "CreateFromBackupIdByNameParameterSet"; private const string CreateFromBackupIdByParentObjectParameterSet = "CreateFromBackupIdByParentObjectParameterSet"; private const string CreateFromBackupNameByNameParameterSet = "CreateFromBackupNameByNameParameterSet"; @@ -113,6 +113,10 @@ public class NewAzureSynapseSqlPool : SynapseManagementCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } + [Parameter(Mandatory = false, HelpMessage = HelpMessages.SqlPoolVersion)] + [ValidateNotNullOrEmpty] + public int Version { get; set; } + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, HelpMessage = HelpMessages.Tag)] [ValidateNotNull] public Hashtable Tag { get; set; } @@ -278,72 +282,108 @@ public override void ExecuteCmdlet() } } - var existingSqlPool = this.SynapseAnalyticsClient.GetSqlPoolOrDefault(this.ResourceGroupName, this.WorkspaceName, this.Name); - if (existingSqlPool != null) - { - throw new SynapseException(string.Format(Resources.SynapseSqlPoolExists, this.Name, this.ResourceGroupName, this.WorkspaceName)); - } - var existingWorkspace = this.SynapseAnalyticsClient.GetWorkspaceOrDefault(this.ResourceGroupName, this.WorkspaceName); if (existingWorkspace == null) { throw new SynapseException(string.Format(Resources.WorkspaceDoesNotExist, this.WorkspaceName)); } - var createParams = new SqlPool + if (this.Version == 3) { - Location = existingWorkspace.Location, - Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true) - }; - switch (this.ParameterSetName) - { - case CreateByNameParameterSet: - case CreateByParentObjectParameterSet: - createParams.CreateMode = SynapseSqlPoolCreateMode.Default; - createParams.Collation = this.IsParameterBound(c => c.Collation) ? this.Collation : SynapseConstants.DefaultCollation; - createParams.Sku = new Sku - { - Name = this.PerformanceLevel - }; - break; - - case CreateFromBackupNameByNameParameterSet: - case CreateFromBackupNameByParentObjectParameterSet: - case CreateFromBackupIdByNameParameterSet: - case CreateFromBackupIdByParentObjectParameterSet: - case CreateFromBackupInputObjectByNameParameterSet: - createParams.CreateMode = SynapseSqlPoolCreateMode.Recovery; - createParams.RecoverableDatabaseId = this.BackupResourceId; - break; - - case CreateFromRestorePointNameByNameParameterSet: - case CreateFromRestorePointNameByParentObjectParameterSet: - case CreateFromRestorePointIdByNameParameterSet: - case CreateFromRestorePointIdByParentObjectParameterSet: - case CreateFromRestorePointInputObjectByNameParameterSet: - if (!this.IsParameterBound(c => c.RestorePoint)) - { - this.RestorePoint = GetNewestRestorePoint(); - } + var existingSqlPool = this.SynapseAnalyticsClient.GetSqlPoolV3OrDefault(this.ResourceGroupName, this.WorkspaceName, this.Name); + if (existingSqlPool != null) + { + throw new SynapseException(string.Format(Resources.SynapseSqlPoolExists, this.Name, this.ResourceGroupName, this.WorkspaceName)); + } - createParams.CreateMode = SynapseSqlPoolCreateMode.PointInTimeRestore; - createParams.SourceDatabaseId = this.SourceResourceId; - createParams.RestorePointInTime = this.RestorePoint; - createParams.Sku = new Sku - { - Name = this.PerformanceLevel - }; + var createParams = new SqlPoolV3 + { + Location = existingWorkspace.Location, + Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true) + }; - break; + switch (this.ParameterSetName) + { + case CreateByNameParameterSet: + case CreateByParentObjectParameterSet: + createParams.Sku = new Sku + { + Name = this.PerformanceLevel + }; + break; + default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + } - default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + if (this.ShouldProcess(this.Name, string.Format(Resources.CreatingSynapseSqlPool, this.ResourceGroupName, this.WorkspaceName, this.Name))) + { + var result = new PSSynapseSqlPoolV3(this.SynapseAnalyticsClient.CreateSqlPoolV3(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); + WriteObject(result); + } } - - if (this.ShouldProcess(this.Name, string.Format(Resources.CreatingSynapseSqlPool, this.ResourceGroupName, this.WorkspaceName, this.Name))) + else { - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.CreateSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); - WriteObject(result); + var existingSqlPool = this.SynapseAnalyticsClient.GetSqlPoolOrDefault(this.ResourceGroupName, this.WorkspaceName, this.Name); + if (existingSqlPool != null) + { + throw new SynapseException(string.Format(Resources.SynapseSqlPoolExists, this.Name, this.ResourceGroupName, this.WorkspaceName)); + } + + var createParams = new SqlPool + { + Location = existingWorkspace.Location, + Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true) + }; + + switch (this.ParameterSetName) + { + case CreateByNameParameterSet: + case CreateByParentObjectParameterSet: + createParams.CreateMode = SynapseSqlPoolCreateMode.Default; + createParams.Collation = this.IsParameterBound(c => c.Collation) ? this.Collation : SynapseConstants.DefaultCollation; + createParams.Sku = new Sku + { + Name = this.PerformanceLevel + }; + break; + + case CreateFromBackupNameByNameParameterSet: + case CreateFromBackupNameByParentObjectParameterSet: + case CreateFromBackupIdByNameParameterSet: + case CreateFromBackupIdByParentObjectParameterSet: + case CreateFromBackupInputObjectByNameParameterSet: + createParams.CreateMode = SynapseSqlPoolCreateMode.Recovery; + createParams.RecoverableDatabaseId = this.BackupResourceId; + break; + + case CreateFromRestorePointNameByNameParameterSet: + case CreateFromRestorePointNameByParentObjectParameterSet: + case CreateFromRestorePointIdByNameParameterSet: + case CreateFromRestorePointIdByParentObjectParameterSet: + case CreateFromRestorePointInputObjectByNameParameterSet: + if (!this.IsParameterBound(c => c.RestorePoint)) + { + this.RestorePoint = GetNewestRestorePoint(); + } + + createParams.CreateMode = SynapseSqlPoolCreateMode.PointInTimeRestore; + createParams.SourceDatabaseId = this.SourceResourceId; + createParams.RestorePointInTime = this.RestorePoint; + createParams.Sku = new Sku + { + Name = this.PerformanceLevel + }; + + break; + + default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + } + + if (this.ShouldProcess(this.Name, string.Format(Resources.CreatingSynapseSqlPool, this.ResourceGroupName, this.WorkspaceName, this.Name))) + { + var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.CreateSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); + WriteObject(result); + } } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs index d2e0ad02dcd9..837ab66fec5c 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs @@ -36,6 +36,10 @@ public class RemoveAzureSynapseSqlPool : SynapseManagementCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } + [Parameter(Mandatory = false, HelpMessage = HelpMessages.SqlPoolVersion)] + [ValidateNotNullOrEmpty] + public int Version { get; set; } + [Parameter(ValueFromPipeline = true, ParameterSetName = DeleteByParentObjectParameterSet, Mandatory = true, HelpMessage = HelpMessages.WorkspaceObject)] [ValidateNotNull] @@ -90,7 +94,15 @@ public override void ExecuteCmdlet() if (this.ShouldProcess(this.Name, string.Format(Resources.RemovingSynapseSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName))) { - this.SynapseAnalyticsClient.DeleteSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name); + if (this.Version == 3) + { + this.SynapseAnalyticsClient.DeleteSqlPoolV3(this.ResourceGroupName, this.WorkspaceName, this.Name); + } + else + { + this.SynapseAnalyticsClient.DeleteSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name); + } + if (this.PassThru.IsPresent) { WriteObject(true); diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs index ded02fc40657..71953381a01e 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs @@ -35,6 +35,10 @@ public class TestAzureSynapseSqlPool : SynapseManagementCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } + [Parameter(Mandatory = false, HelpMessage = HelpMessages.SqlPoolVersion)] + [ValidateNotNullOrEmpty] + public int Version { get; set; } + [Parameter(ValueFromPipeline = true, ParameterSetName = TestByParentObjectParameterSet, Mandatory = true, HelpMessage = HelpMessages.WorkspaceObject)] [ValidateNotNull] @@ -48,7 +52,14 @@ public override void ExecuteCmdlet() this.WorkspaceName = this.WorkspaceObject.Name; } - WriteObject(SynapseAnalyticsClient.TestSqlPool(ResourceGroupName, WorkspaceName, Name)); + if (this.Version == 3) + { + WriteObject(SynapseAnalyticsClient.TestSqlPoolV3(ResourceGroupName, WorkspaceName, Name)); + } + else + { + WriteObject(SynapseAnalyticsClient.TestSqlPool(ResourceGroupName, WorkspaceName, Name)); + } } } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs index 7afa770c414f..fa312c508acb 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs @@ -64,6 +64,10 @@ public class UpdateAzureSynapseSqlPool : SynapseManagementCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } + [Parameter(Mandatory = false, HelpMessage = HelpMessages.SqlPoolVersion)] + [ValidateNotNullOrEmpty] + public int Version { get; set; } + [Parameter(Mandatory = true, ParameterSetName = PauseByNameParameterSet, HelpMessage = HelpMessages.SuspendSqlPool)] [Parameter(Mandatory = true, ParameterSetName = PauseByInputObjectParameterSet, HelpMessage = HelpMessages.SuspendSqlPool)] [Parameter(Mandatory = true, ParameterSetName = PauseByParentObjectParameterSet, HelpMessage = HelpMessages.SuspendSqlPool)] @@ -165,54 +169,107 @@ public override void ExecuteCmdlet() this.ResourceGroupName = this.SynapseAnalyticsClient.GetResourceGroupByWorkspaceName(this.WorkspaceName); } - SqlPool existingSqlPool = null; - try + if (this.Version == 3) { - existingSqlPool = this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name); + SqlPoolV3 existingSqlPool = null; + try + { + existingSqlPool = this.SynapseAnalyticsClient.GetSqlPoolV3(this.ResourceGroupName, this.WorkspaceName, this.Name); + } + catch + { + existingSqlPool = null; + } + + if (existingSqlPool == null) + { + throw new SynapseException(string.Format(Resources.FailedToDiscoverSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName)); + } + + switch (this.ParameterSetName) + { + case UpdateByNameParameterSet: + case UpdateByInputObjectParameterSet: + case UpdateByParentObjectParameterSet: + case UpdateByResourceIdParameterSet: + UpdateSqlPoolV3(existingSqlPool); + break; + + default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + } } - catch + else { - existingSqlPool = null; + SqlPool existingSqlPool = null; + try + { + existingSqlPool = this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name); + } + catch + { + existingSqlPool = null; + } + + if (existingSqlPool == null) + { + throw new SynapseException(string.Format(Resources.FailedToDiscoverSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName)); + } + + switch (this.ParameterSetName) + { + case UpdateByNameParameterSet: + case UpdateByInputObjectParameterSet: + case UpdateByParentObjectParameterSet: + case UpdateByResourceIdParameterSet: + UpdateSqlPool(existingSqlPool); + break; + + case PauseByNameParameterSet: + case PauseByInputObjectParameterSet: + case PauseByParentObjectParameterSet: + case PauseByResourceIdParameterSet: + PauseSqlPool(); + break; + + case ResumeByNameParameterSet: + case ResumeByInputObjectParameterSet: + case ResumeByParentObjectParameterSet: + case ResumeByResourceIdParameterSet: + ResumeSqlPool(); + break; + + case RenameByNameParameterSet: + case RenameByInputObjectParameterSet: + case RenameByParentObjectParameterSet: + case RenameByResourceIdParameterSet: + RenameSqlPool(); + break; + + default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + } } + } - if (existingSqlPool == null) + private void UpdateSqlPoolV3(SqlPoolV3 existingSqlPool) + { + SqlPoolUpdate sqlPoolPatchInfo = new SqlPoolUpdate { - throw new SynapseException(string.Format(Resources.FailedToDiscoverSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName)); - } + Tags = this.IsParameterBound(c => c.Tag) ? TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true) : existingSqlPool.Tags, + Sku = !this.IsParameterBound(c => c.PerformanceLevel) ? existingSqlPool.Sku : new Sku + { + Name = this.PerformanceLevel + } + }; - switch (this.ParameterSetName) + if (this.ShouldProcess(this.Name, string.Format(Resources.UpdatingSynapseSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName))) { - case UpdateByNameParameterSet: - case UpdateByInputObjectParameterSet: - case UpdateByParentObjectParameterSet: - case UpdateByResourceIdParameterSet: - UpdateSqlPool(existingSqlPool); - break; - - case PauseByNameParameterSet: - case PauseByInputObjectParameterSet: - case PauseByParentObjectParameterSet: - case PauseByResourceIdParameterSet: - PauseSqlPool(); - break; - - case ResumeByNameParameterSet: - case ResumeByInputObjectParameterSet: - case ResumeByParentObjectParameterSet: - case ResumeByResourceIdParameterSet: - ResumeSqlPool(); - break; - - case RenameByNameParameterSet: - case RenameByInputObjectParameterSet: - case RenameByParentObjectParameterSet: - case RenameByResourceIdParameterSet: - RenameSqlPool(); - break; - - default: throw new SynapseException(string.Format(Resources.InvalidParameterSet, this.ParameterSetName)); + this.SynapseAnalyticsClient.UpdateSqlPoolV3(this.ResourceGroupName, this.WorkspaceName, this.Name, sqlPoolPatchInfo); + if (this.PassThru.IsPresent) + { + var result = this.SynapseAnalyticsClient.GetSqlPoolV3(this.ResourceGroupName, this.WorkspaceName, this.Name); + WriteObject(result); + } } - } private void UpdateSqlPool(SqlPool existingSqlPool) diff --git a/src/Synapse/Synapse/Common/HelpMessages.cs b/src/Synapse/Synapse/Common/HelpMessages.cs index 1477bb3da7c0..85a63bc0ebf9 100644 --- a/src/Synapse/Synapse/Common/HelpMessages.cs +++ b/src/Synapse/Synapse/Common/HelpMessages.cs @@ -116,8 +116,16 @@ public static class HelpMessages public const string ApplicationId = "The Application identifier of the session."; + public const string SqlDatabaseName = "Name of Synapse SQL Database."; + + public const string SqlDatabaseResourceId = "Resource identifier of Synapse SQL Database."; + + public const string SqlDatabaseObject = "SQL Database input object, usually passed through the pipeline."; + public const string SqlPoolName = "Name of Synapse SQL pool."; + public const string SqlPoolVersion = "Version of Synapse SQL pool. For example, 2 or 3."; + public const string SqlPoolNewName = "The new name to rename the SQL pool to."; public const string SqlPoolResourceId = "Resource identifier of Synapse SQL Pool."; @@ -131,6 +139,8 @@ public static class HelpMessages public const string PerformanceLevel = "The SQL Service tier and performance level to assign to the SQL pool. For example, DW2000c."; public const string Collation = "Collation defines the rules that sort and compare data, and cannot be changed after SQL pool creation. The default collation is " + SynapseConstants.DefaultCollation + "."; + + public const string MaxSizeInBytes = "Specifies the maximum size of the database in bytes."; public const string BackupResourceGroupName = "The resource group name of bakcup SQL pool object to create from."; diff --git a/src/Synapse/Synapse/Models/PSSynapseSqlDatabase.cs b/src/Synapse/Synapse/Models/PSSynapseSqlDatabase.cs new file mode 100644 index 000000000000..3890cc81446f --- /dev/null +++ b/src/Synapse/Synapse/Models/PSSynapseSqlDatabase.cs @@ -0,0 +1,30 @@ +using Microsoft.Azure.Management.Synapse.Models; + +namespace Microsoft.Azure.Commands.Synapse.Models +{ + public class PSSynapseSqlDatabase : PSSynapseTrackedResource + { + public PSSynapseSqlDatabase(SqlDatabase sqlDatabase) + : base(sqlDatabase?.Location, sqlDatabase?.Id, sqlDatabase?.Name, sqlDatabase?.Type, sqlDatabase?.Tags) + { + this.MaxSizeBytes = sqlDatabase?.MaxSizeBytes; + this.Collation = sqlDatabase?.Collation; + this.SystemData = sqlDatabase?.SystemData != null ? new PSSystemData(sqlDatabase.SystemData) : null; + } + + /// + /// Gets System Data + /// + public PSSystemData SystemData { get; private set; } + + /// + /// Gets maximum size in bytes + /// + public long? MaxSizeBytes { get; private set; } + + /// + /// Gets collation mode + /// + public string Collation { get; private set; } + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Models/PSSynapseSqlPoolV3.cs b/src/Synapse/Synapse/Models/PSSynapseSqlPoolV3.cs new file mode 100644 index 000000000000..5a0a6bc1dbb6 --- /dev/null +++ b/src/Synapse/Synapse/Models/PSSynapseSqlPoolV3.cs @@ -0,0 +1,55 @@ +using Microsoft.Azure.Management.Synapse.Models; +using System; + +namespace Microsoft.Azure.Commands.Synapse.Models +{ + public class PSSynapseSqlPoolV3 : PSSynapseTrackedResource + { + public PSSynapseSqlPoolV3(SqlPoolV3 sqlPool) + : base(sqlPool?.Location, sqlPool?.Id, sqlPool?.Name, sqlPool?.Type, sqlPool?.Tags) + { + this.Sku = sqlPool?.Sku != null ? new PSSynapseSku(sqlPool.Sku) : null; + this.Kind = sqlPool?.Kind; + this.CurrentServiceObjectiveName = sqlPool?.CurrentServiceObjectiveName; + this.RequestedServiceObjectiveName = sqlPool?.RequestedServiceObjectiveName; + this.SqlPoolGuid = sqlPool?.SqlPoolGuid; + this.SystemData = sqlPool?.SystemData != null ? new PSSystemData(sqlPool.SystemData) : null; + this.Status = sqlPool?.Status; + } + + /// + /// Gets SQL pool SKU + /// + public PSSynapseSku Sku { get; private set; } + + /// + /// Gets Kind of Sql Pool + /// + public string Kind { get; private set; } + + /// + /// Gets current service objective name + /// + public string CurrentServiceObjectiveName { get; private set; } + + /// + /// Gets requested service objective name + /// + public string RequestedServiceObjectiveName { get; private set; } + + /// + /// Gets Sql Pool Guid + /// + public Guid? SqlPoolGuid { get; private set; } + + /// + /// Gets System Data + /// + public PSSystemData SystemData { get; private set; } + + /// + /// Gets resource status + /// + public string Status { get; private set; } + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Models/PSSystemData.cs b/src/Synapse/Synapse/Models/PSSystemData.cs new file mode 100644 index 000000000000..f1730b48883f --- /dev/null +++ b/src/Synapse/Synapse/Models/PSSystemData.cs @@ -0,0 +1,50 @@ +using Microsoft.Azure.Management.Synapse.Models; +using System; + +namespace Microsoft.Azure.Commands.Synapse.Models +{ + public class PSSystemData + { + public PSSystemData(SystemData systemData) + { + this.CreatedAt = systemData?.CreatedAt; + this.CreatedBy = systemData?.CreatedBy; + this.CreatedByType = systemData?.CreatedByType; + this.LastModifiedAt = systemData?.LastModifiedAt; + this.LastModifiedBy = systemData?.LastModifiedBy; + this.LastModifiedByType = systemData?.LastModifiedByType; + } + + /// + /// Gets the identity that created the resource. + /// + public string CreatedBy { get; } + + /// + /// Gets the type of identity that created the resource: User|Application|ManagedIdentity|Key + /// Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' + /// + public string CreatedByType { get; } + + /// + /// Gets the timestamp of resource creation (UTC). + /// + public DateTime? CreatedAt { get; } + + /// + /// Gets the identity that last modified the resource. + /// + public string LastModifiedBy { get; } + + /// + /// Gets the type of identity that last modified the resource: User|Application|ManagedIdentity|Key + /// Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' + /// + public string LastModifiedByType { get; } + + /// + /// Gets the timestamp of resource last modification (UTC). + /// + public DateTime? LastModifiedAt { get; } + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Models/SynapseAnalyticsManagementClient.cs b/src/Synapse/Synapse/Models/SynapseAnalyticsManagementClient.cs index 0dd9c98f5529..fb23745568b7 100644 --- a/src/Synapse/Synapse/Models/SynapseAnalyticsManagementClient.cs +++ b/src/Synapse/Synapse/Models/SynapseAnalyticsManagementClient.cs @@ -18,6 +18,7 @@ public class SynapseAnalyticsManagementClient { private readonly Guid _subscriptionId; private readonly SynapseManagementClient _synapseManagementClient; + private readonly SynapseSqlV3ManagementClient _synapseSqlV3ManagementClient; public SynapseAnalyticsManagementClient(IAzureContext context) { @@ -30,6 +31,9 @@ public SynapseAnalyticsManagementClient(IAzureContext context) _synapseManagementClient = SynapseCmdletBase.CreateSynapseClient(context, AzureEnvironment.Endpoint.ResourceManager); + + _synapseSqlV3ManagementClient = SynapseCmdletBase.CreateSynapseClient(context, + AzureEnvironment.Endpoint.ResourceManager); } #region Workspace operations @@ -453,6 +457,236 @@ internal List ListSqlPoolRestorePoints(string resourceGroupName, s #endregion + #region SQL Pool V3 operations + + public SqlPoolV3 CreateSqlPoolV3(string resourceGroupName, string workspaceName, string sqlPoolName, SqlPoolV3 createOrUpdateParams) + { + try + { + return _synapseSqlV3ManagementClient.SqlPoolsV3.CreateOrUpdate(resourceGroupName, workspaceName, sqlPoolName, createOrUpdateParams); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + internal SqlPoolV3 GetSqlPoolV3(string resourceGroupName, string workspaceName, string sqlPoolName) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + return _synapseSqlV3ManagementClient.SqlPoolsV3.Get(resourceGroupName, workspaceName, sqlPoolName); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + internal SqlPoolV3 GetSqlPoolV3OrDefault(string resourceGroupName, string workspaceName, string sqlPoolName) + { + try + { + return GetSqlPoolV3(resourceGroupName, workspaceName, sqlPoolName); + } + catch + { + return null; + } + } + + public List ListSqlPoolsV3(string resourceGroupName, string workspaceName) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + var firstPage = this._synapseSqlV3ManagementClient.SqlPoolsV3.ListByWorkspace(resourceGroupName, workspaceName); + return ListResources(firstPage, _synapseSqlV3ManagementClient.SqlPoolsV3.ListByWorkspaceNext); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + public void UpdateSqlPoolV3(string resourceGroupName, string workspaceName, string sqlPoolName, SqlPoolUpdate updateParams) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + _synapseSqlV3ManagementClient.SqlPoolsV3.Update(resourceGroupName, workspaceName, sqlPoolName, updateParams); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + public void DeleteSqlPoolV3(string resourceGroupName, string workspaceName, string sqlPoolName) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + if (!TestSqlPoolV3(resourceGroupName, workspaceName, sqlPoolName)) + { + throw new InvalidOperationException(string.Format(Properties.Resources.SqlPoolDoesNotExist, sqlPoolName)); + } + + _synapseSqlV3ManagementClient.SqlPoolsV3.Delete(resourceGroupName, workspaceName, sqlPoolName); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + public bool TestSqlPoolV3(string resourceGroupName, string workspaceName, string sqlPoolName) + { + try + { + GetSqlPoolV3(resourceGroupName, workspaceName, sqlPoolName); + return true; + } + catch (NotFoundException) + { + return false; + } + } + + #endregion + + #region SQL Database operations + + public SqlDatabase CreateSqlDatabase(string resourceGroupName, string workspaceName, string sqlDatabaseName, SqlDatabase createOrUpdateParams) + { + try + { + return _synapseSqlV3ManagementClient.SqlDatabases.CreateOrUpdate(resourceGroupName, workspaceName, sqlDatabaseName, createOrUpdateParams); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + internal SqlDatabase GetSqlDatabase(string resourceGroupName, string workspaceName, string sqlDatabaseName) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + return _synapseSqlV3ManagementClient.SqlDatabases.Get(resourceGroupName, workspaceName, sqlDatabaseName); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + internal SqlDatabase GetSqlDatabaseOrDefault(string resourceGroupName, string workspaceName, string sqlDatabaseName) + { + try + { + return GetSqlDatabase(resourceGroupName, workspaceName, sqlDatabaseName); + } + catch + { + return null; + } + } + + public List ListSqlDatabases(string resourceGroupName, string workspaceName) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + var firstPage = this._synapseSqlV3ManagementClient.SqlDatabases.ListByWorkspace(resourceGroupName, workspaceName); + return ListResources(firstPage, _synapseSqlV3ManagementClient.SqlDatabases.ListByWorkspaceNext); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + public void UpdateSqlDatabase(string resourceGroupName, string workspaceName, string sqlDatabaseName, SqlDatabaseUpdate updateParams) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + _synapseSqlV3ManagementClient.SqlDatabases.Update(resourceGroupName, workspaceName, sqlDatabaseName, updateParams); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + public void DeleteSqlDatabase(string resourceGroupName, string workspaceName, string sqlDatabaseName) + { + try + { + if (string.IsNullOrEmpty(resourceGroupName)) + { + resourceGroupName = GetResourceGroupByWorkspaceName(workspaceName); + } + + if (!TestSqlDatabase(resourceGroupName, workspaceName, sqlDatabaseName)) + { + throw new InvalidOperationException(string.Format(Properties.Resources.SqlDatabaseDoesNotExist, sqlDatabaseName)); + } + + _synapseSqlV3ManagementClient.SqlDatabases.Delete(resourceGroupName, workspaceName, sqlDatabaseName); + } + catch (ErrorContractException ex) + { + throw GetSynapseException(ex); + } + } + + public bool TestSqlDatabase(string resourceGroupName, string workspaceName, string sqlDatabaseName) + { + try + { + GetSqlDatabase(resourceGroupName, workspaceName, sqlDatabaseName); + return true; + } + catch (NotFoundException) + { + return false; + } + } + + #endregion + #region Spark pool operations public BigDataPoolResourceInfo CreateOrUpdateSparkPool(string resourceGroupName, string workspaceName, string sparkPoolName, BigDataPoolResourceInfo createOrUpdateParams) diff --git a/src/Synapse/Synapse/Models/SynapseConstants.cs b/src/Synapse/Synapse/Models/SynapseConstants.cs index b824a749b405..6675aac0bab4 100644 --- a/src/Synapse/Synapse/Models/SynapseConstants.cs +++ b/src/Synapse/Synapse/Models/SynapseConstants.cs @@ -32,6 +32,8 @@ public static class SynapseConstants public const string SqlPool = nameof(SqlPool); + public const string SqlDatabase = nameof(SqlDatabase); + public const string SparkPoolName = nameof(SparkPoolName); public const string Job = nameof(Job); diff --git a/src/Synapse/Synapse/Properties/Resources.Designer.cs b/src/Synapse/Synapse/Properties/Resources.Designer.cs index c9ba59bb4dd8..66f0eedfe82e 100644 --- a/src/Synapse/Synapse/Properties/Resources.Designer.cs +++ b/src/Synapse/Synapse/Properties/Resources.Designer.cs @@ -123,6 +123,15 @@ internal static string CreatingSynapseSparkPool { } } + /// + /// Looks up a localized string similar to Creating a new SQL Database in resource group '{0}' under parent Workspace '{1}' with name '{2}'.. + /// + internal static string CreatingSynapseSqlDatabase { + get { + return ResourceManager.GetString("CreatingSynapseSqlDatabase", resourceCulture); + } + } + /// /// Looks up a localized string similar to Creating a new SQL pool in resource group '{0}' under parent Workspace '{1}' with name '{2}'.. /// @@ -249,6 +258,15 @@ internal static string FailedToDiscoverSparkStatement { } } + /// + /// Looks up a localized string similar to A SQL Database with name '{0}' in resource group '{1}' under workspace '{2}' does not exist. Please use New-AzSynapseSqlDatabase to create a SQL Database with these properties.. + /// + internal static string FailedToDiscoverSqlDatabase { + get { + return ResourceManager.GetString("FailedToDiscoverSqlDatabase", resourceCulture); + } + } + /// /// Looks up a localized string similar to Failed to discover restore points for SQL database with name '{0}' in resource group '{1}' under workspace '{2}' does not exist.. /// @@ -429,6 +447,15 @@ internal static string RemovingSynapseSparkPool { } } + /// + /// Looks up a localized string similar to Deleting SQL Database '{0}' in resource group '{1}' under workspace '{2}'.. + /// + internal static string RemovingSynapseSqlDatabase { + get { + return ResourceManager.GetString("RemovingSynapseSqlDatabase", resourceCulture); + } + } + /// /// Looks up a localized string similar to Deleting SQL pool '{0}' in resource group '{1}' under workspace '{2}'.. /// @@ -564,6 +591,15 @@ internal static string SynapseSparkPoolExists { } } + /// + /// Looks up a localized string similar to A SQL Database with name '{0}' in resource group '{1}' under workspace '{2}' already exists. Please use Update-AzSynapseSqlDatabase to update an existing SQL Database.. + /// + internal static string SynapseSqlDatabaseExists { + get { + return ResourceManager.GetString("SynapseSqlDatabaseExists", resourceCulture); + } + } + /// /// Looks up a localized string similar to A SQL pool with name '{0}' in resource group '{1}' under workspace '{2}' already exists. Please use Set-AzSynapseSqlPool to update an existing SQL pool.. /// @@ -591,6 +627,15 @@ internal static string UpdatingSynapseSparkPool { } } + /// + /// Looks up a localized string similar to Updating SQL Database '{0}' in resource group '{1}' under Workspace '{2}'.. + /// + internal static string UpdatingSynapseSqlDatabase { + get { + return ResourceManager.GetString("UpdatingSynapseSqlDatabase", resourceCulture); + } + } + /// /// Looks up a localized string similar to Updating SQL pool '{0}' in resource group '{1}' under Workspace '{2}'.. /// diff --git a/src/Synapse/Synapse/Properties/Resources.resx b/src/Synapse/Synapse/Properties/Resources.resx index be51d7684a7c..ed5a206c5d85 100644 --- a/src/Synapse/Synapse/Properties/Resources.resx +++ b/src/Synapse/Synapse/Properties/Resources.resx @@ -312,4 +312,19 @@ Service principal with Name '{0}' does not exist. + + Creating a new SQL Database in resource group '{0}' under parent Workspace '{1}' with name '{2}'. + + + A SQL Database with name '{0}' in resource group '{1}' under workspace '{2}' does not exist. Please use New-AzSynapseSqlDatabase to create a SQL Database with these properties. + + + Deleting SQL Database '{0}' in resource group '{1}' under workspace '{2}'. + + + A SQL Database with name '{0}' in resource group '{1}' under workspace '{2}' already exists. Please use Update-AzSynapseSqlDatabase to update an existing SQL Database. + + + Updating SQL Database '{0}' in resource group '{1}' under Workspace '{2}'. + \ No newline at end of file diff --git a/src/Synapse/Synapse/Synapse.csproj b/src/Synapse/Synapse/Synapse.csproj index 04f2ccc5915a..02967ee0521f 100644 --- a/src/Synapse/Synapse/Synapse.csproj +++ b/src/Synapse/Synapse/Synapse.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Synapse/Synapse/help/Az.Synapse.md b/src/Synapse/Synapse/help/Az.Synapse.md index d14b1cb8a6a3..ebded11766a2 100644 --- a/src/Synapse/Synapse/help/Az.Synapse.md +++ b/src/Synapse/Synapse/help/Az.Synapse.md @@ -32,6 +32,9 @@ Gets a Synapse Analytics Spark session. ### [Get-AzSynapseSparkStatement](Get-AzSynapseSparkStatement.md) Gets a Synapse Analytics Spark statement. +### [Get-AzSynapseSqlDatabase](Get-AzSynapseSqlDatabase.md) +This feature is in a limited preview, initially accessible only to certain subscriptions. Gets a Synapse Analytics SQL database. + ### [Get-AzSynapseSqlPool](Get-AzSynapseSqlPool.md) Gets a Synapse Analytics SQL pool. @@ -50,6 +53,9 @@ Creates a Synapse Analytics role assignment. ### [New-AzSynapseSparkPool](New-AzSynapseSparkPool.md) Creates a Synapse Analytics Spark pool. +### [New-AzSynapseSqlDatabase](New-AzSynapseSqlDatabase.md) +This feature is in a limited preview, initially accessible only to certain subscriptions. Creates a Synapse Analytics SQL database. + ### [New-AzSynapseSqlPool](New-AzSynapseSqlPool.md) Creates a Synapse Analytics SQL pool. @@ -65,6 +71,9 @@ Deletes a Synapse Analytics role assignment. ### [Remove-AzSynapseSparkPool](Remove-AzSynapseSparkPool.md) Deletes a Synapse Analytics Spark pool. +### [Remove-AzSynapseSqlDatabase](Remove-AzSynapseSqlDatabase.md) +This feature is in a limited preview, initially accessible only to certain subscriptions. Deletes a Synapse Analytics SQL database. + ### [Remove-AzSynapseSqlPool](Remove-AzSynapseSqlPool.md) Deletes a Synapse Analytics SQL pool. @@ -92,6 +101,9 @@ Submits a Synapse Analytics Spark job. ### [Test-AzSynapseSparkPool](Test-AzSynapseSparkPool.md) Checks for the existence of a Synapse Analytics Spark pool. +### [Test-AzSynapseSqlDatabase](Test-AzSynapseSqlDatabase.md) +This feature is in a limited preview, initially accessible only to certain subscriptions. Checks for the existence of a Synapse Analytics SQL database. + ### [Test-AzSynapseSqlPool](Test-AzSynapseSqlPool.md) Checks for the existence of a Synapse Analytics SQL pool. @@ -104,6 +116,9 @@ Updates a Synapse Analytics Firewall Rule. ### [Update-AzSynapseSparkPool](Update-AzSynapseSparkPool.md) Updates a Synapse Analytics Spark pool. +### [Update-AzSynapseSqlDatabase](Update-AzSynapseSqlDatabase.md) +This feature is in a limited preview, initially accessible only to certain subscriptions. Updates a Synapse Analytics SQL database. + ### [Update-AzSynapseSqlPool](Update-AzSynapseSqlPool.md) Updates a Synapse Analytics SQL pool. diff --git a/src/Synapse/Synapse/help/Get-AzSynapseSqlDatabase.md b/src/Synapse/Synapse/help/Get-AzSynapseSqlDatabase.md new file mode 100644 index 000000000000..d79047f38c26 --- /dev/null +++ b/src/Synapse/Synapse/help/Get-AzSynapseSqlDatabase.md @@ -0,0 +1,172 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/get-azsynapsesqldatabase +schema: 2.0.0 +--- + +# Get-AzSynapseSqlDatabase + +## SYNOPSIS +Gets a Synapse Analytics SQL database. + +## SYNTAX + +### GetByNameParameterSet (Default) +``` +Get-AzSynapseSqlDatabase [-ResourceGroupName ] -WorkspaceName [-Name ] + [-DefaultProfile ] [] +``` + +### GetByParentObjectParameterSet +``` +Get-AzSynapseSqlDatabase [-Name ] -WorkspaceObject + [-DefaultProfile ] [] +``` + +### GetByResourceIdParameterSet +``` +Get-AzSynapseSqlDatabase -ResourceId [-DefaultProfile ] [] +``` + +## DESCRIPTION +[This feature is in a limited preview, initially accessible only to certain subscriptions.] +The **Get-AzSynapseSqlDatabase** cmdlet gets information about an Azure Synapse Analytics SQL database. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzSynapseSqlDatabase -WorkspaceName ContosoWorkspace +``` + +This command gets all SQL databases under a workspace. + +### Example 2 +```powershell +PS C:\> Get-AzSynapseSqlDatabase -WorkspaceName ContosoWorkspace -Name ContosoSqlDatabase +``` + +This command gets the SQL database under workspace ContosoWorkspace with name ContosoSqlDatabase. + +### Example 3 +```powershell +PS C:\> $ws = Get-AzSynapseWorkspace -Name ContosoWorkspace +PS C:\> $ws | Get-AzSynapseSqlDatabase +``` + +This command gets all the SQL databases under a workspace through pipeline. + +### Example 4 +```powershell +PS C:\> Get-AzSynapseSqlDatabase -ResourceId "/subscriptions/21686af7-58ec-4f4d-9c68-f431f4db4edd/resourceGroups/ContosoResourceGroup/providers/Microsoft.Synapse/workspaces/ContosoWorkspace/sqlDatabases/ContosoSqlDatabase" +``` + +This command gets the SQL database with the specified resource ID. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: GetByNameParameterSet, GetByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: GetByNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Resource identifier of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: GetByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: GetByNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceObject +workspace input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace +Parameter Sets: GetByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md index c6f90267fb18..1c01d7771ebd 100644 --- a/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md @@ -14,19 +14,20 @@ Gets a Synapse Analytics SQL pool. ### GetByNameParameterSet (Default) ``` -Get-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName [-Name ] +Get-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName [-Name ] [-Version ] [-DefaultProfile ] [] ``` ### GetByParentObjectParameterSet ``` -Get-AzSynapseSqlPool [-Name ] -WorkspaceObject +Get-AzSynapseSqlPool [-Name ] [-Version ] -WorkspaceObject [-DefaultProfile ] [] ``` ### GetByResourceIdParameterSet ``` -Get-AzSynapseSqlPool -ResourceId [-DefaultProfile ] [] +Get-AzSynapseSqlPool [-Version ] -ResourceId [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -125,6 +126,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Version +[This feature is in a limited preview, initially accessible only to certain subscriptions.] +Version of Synapse SQL pool. For example, 2 or 3. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkspaceName Name of Synapse workspace. diff --git a/src/Synapse/Synapse/help/New-AzSynapseSqlDatabase.md b/src/Synapse/Synapse/help/New-AzSynapseSqlDatabase.md new file mode 100644 index 000000000000..25f547d44e22 --- /dev/null +++ b/src/Synapse/Synapse/help/New-AzSynapseSqlDatabase.md @@ -0,0 +1,224 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/new-azsynapsesqldatabase +schema: 2.0.0 +--- + +# New-AzSynapseSqlDatabase + +## SYNOPSIS +Gets a Synapse Analytics SQL database. + +## SYNTAX + +### CreateByNameParameterSet (Default) +``` +New-AzSynapseSqlDatabase [-ResourceGroupName ] -WorkspaceName -Name + [-Tag ] [-Collation ] [-MaxSizeInBytes ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### CreateByParentObjectParameterSet +``` +New-AzSynapseSqlDatabase -WorkspaceObject -Name [-Tag ] + [-Collation ] [-MaxSizeInBytes ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **Get-AzSynapseSqlDatabase** cmdlet gets information about an Azure Synapse Analytics SQL database. + + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzSynapseSqlDatabase -WorkspaceName ContosoWorkspace -Name ContosoSqlDatabase +``` + +This command creates an Azure Synapse Analytics SQL database. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```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 +``` + +### -Collation +Collation defines the rules that sort and compare data, and cannot be changed after SQL pool creation. +The default collation is SQL_Latin1_General_CP1_CI_AS. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxSizeInBytes +Specifies the maximum size of the database in bytes. + +```yaml +Type: System.Int64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: CreateByNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A string,string dictionary of tags associated with the resource. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: CreateByNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceObject +workspace input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace +Parameter Sets: CreateByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md index 9d1912f21cce..60c7994dd8b6 100644 --- a/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md @@ -14,65 +14,68 @@ Creates a Synapse Analytics SQL pool. ### CreateByNameParameterSet (Default) ``` -New-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Tag ] - -PerformanceLevel [-Collation ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +New-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Version ] + [-Tag ] -PerformanceLevel [-Collation ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateFromBackupIdByNameParameterSet ``` New-AzSynapseSqlPool [-FromBackup] [-ResourceGroupName ] -WorkspaceName -Name - [-Tag ] -BackupResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-Version ] [-Tag ] -BackupResourceId [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateFromBackupIdByParentObjectParameterSet ``` -New-AzSynapseSqlPool [-FromBackup] -WorkspaceObject -Name [-Tag ] - -BackupResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +New-AzSynapseSqlPool [-FromBackup] -WorkspaceObject -Name [-Version ] + [-Tag ] -BackupResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### CreateFromBackupNameByNameParameterSet ``` New-AzSynapseSqlPool [-FromBackup] [-ResourceGroupName ] -WorkspaceName -Name - [-Tag ] [-BackupResourceGroupName ] -BackupWorkspaceName + [-Version ] [-Tag ] [-BackupResourceGroupName ] -BackupWorkspaceName -BackupSqlPoolName [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateFromBackupNameByParentObjectParameterSet ``` -New-AzSynapseSqlPool [-FromBackup] -WorkspaceObject -Name [-Tag ] - [-BackupResourceGroupName ] -BackupWorkspaceName -BackupSqlPoolName [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +New-AzSynapseSqlPool [-FromBackup] -WorkspaceObject -Name [-Version ] + [-Tag ] [-BackupResourceGroupName ] -BackupWorkspaceName + -BackupSqlPoolName [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### CreateFromBackupInputObjectByNameParameterSet ``` New-AzSynapseSqlPool [-FromBackup] [-ResourceGroupName ] -WorkspaceName -Name - [-Tag ] -BackupSqlPoolObject [-AsJob] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-Version ] [-Tag ] -BackupSqlPoolObject [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateFromRestorePointIdByNameParameterSet ``` New-AzSynapseSqlPool [-FromRestorePoint] [-ResourceGroupName ] -WorkspaceName -Name - [-Tag ] -PerformanceLevel -SourceResourceId [-RestorePoint ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Version ] [-Tag ] -PerformanceLevel -SourceResourceId + [-RestorePoint ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### CreateFromRestorePointIdByParentObjectParameterSet ``` New-AzSynapseSqlPool [-FromRestorePoint] -WorkspaceObject -Name - [-Tag ] -PerformanceLevel -SourceResourceId [-RestorePoint ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Version ] [-Tag ] -PerformanceLevel -SourceResourceId + [-RestorePoint ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### CreateFromRestorePointNameByNameParameterSet ``` New-AzSynapseSqlPool [-FromRestorePoint] [-ResourceGroupName ] -WorkspaceName -Name - [-Tag ] -PerformanceLevel [-SourceResourceGroupName ] + [-Version ] [-Tag ] -PerformanceLevel [-SourceResourceGroupName ] -SourceWorkspaceName -SourceSqlPoolName [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -80,7 +83,7 @@ New-AzSynapseSqlPool [-FromRestorePoint] [-ResourceGroupName ] -Workspac ### CreateFromRestorePointNameByParentObjectParameterSet ``` New-AzSynapseSqlPool [-FromRestorePoint] -WorkspaceObject -Name - [-Tag ] [-SourceResourceGroupName ] -SourceWorkspaceName + [-Version ] [-Tag ] [-SourceResourceGroupName ] -SourceWorkspaceName -SourceSqlPoolName [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -88,13 +91,13 @@ New-AzSynapseSqlPool [-FromRestorePoint] -WorkspaceObject - ### CreateFromRestorePointInputObjectByNameParameterSet ``` New-AzSynapseSqlPool [-FromRestorePoint] [-ResourceGroupName ] -WorkspaceName -Name - [-Tag ] [-PerformanceLevel ] -SourceSqlPoolObject [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Version ] [-Tag ] [-PerformanceLevel ] -SourceSqlPoolObject + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### CreateByParentObjectParameterSet ``` -New-AzSynapseSqlPool -WorkspaceObject -Name [-Tag ] +New-AzSynapseSqlPool -WorkspaceObject -Name [-Version ] [-Tag ] -PerformanceLevel [-Collation ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -106,7 +109,7 @@ The **New-AzSynapseSqlPool** cmdlet creates an Azure Synapse Analytics SQL pool. ### Example 1 ```powershell -PS C:\> New-AzSynapseSqlPool -WorkspaceName ContosoWorkspace -Name dwsql0644 -PerformanceLevel DW200c +PS C:\> New-AzSynapseSqlPool -WorkspaceName ContosoWorkspace -Name ContosoSqlPool -PerformanceLevel DW200c ``` This command creates an Azure Synapse Analytics SQL pool. @@ -456,6 +459,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Version +Version of Synapse SQL pool. For example, 2 or 3. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkspaceName Name of Synapse workspace. diff --git a/src/Synapse/Synapse/help/Remove-AzSynapseSqlDatabase.md b/src/Synapse/Synapse/help/Remove-AzSynapseSqlDatabase.md new file mode 100644 index 000000000000..74183d5671e1 --- /dev/null +++ b/src/Synapse/Synapse/help/Remove-AzSynapseSqlDatabase.md @@ -0,0 +1,261 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/remove-azsynapsesqldatabase +schema: 2.0.0 +--- + +# Remove-AzSynapseSqlDatabase + +## SYNOPSIS +Deletes a Synapse Analytics SQL database. + +## SYNTAX + +### DeleteByNameParameterSet (Default) +``` +Remove-AzSynapseSqlDatabase [-ResourceGroupName ] -WorkspaceName -Name [-PassThru] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### DeleteByParentObjectParameterSet +``` +Remove-AzSynapseSqlDatabase -Name -WorkspaceObject [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### DeleteByInputObjectParameterSet +``` +Remove-AzSynapseSqlDatabase -InputObject [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### DeleteByResourceIdParameterSet +``` +Remove-AzSynapseSqlDatabase -ResourceId [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzSynapseSqlPool** cmdlet permanently deletes an Azure Synapse Analytics SQL database. + + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzSynapseSqlDatabase -WorkspaceName ContosoWorkspace -Name ContosoSqlDatabase +``` + +This command deletes an Azure Synapse Analytics SQL database. + +### Example 2 +```powershell +PS C:\> $ws = Get-AzSynapseWorkspace -Name ContosoWorkspace +PS C:\> $ws | Remove-AzSynapseSqlDatabase -Name ContosoSqlDatabase +``` + +This command deletes an Azure Synapse Analytics SQL database through pipeline. + +### Example 3 +```powershell +PS C:\> $database = Get-AzSynapseSqlDatabase -WorkspaceName ContosoWorkspace -Name ContosoSqlDatabase +PS C:\> $database | Remove-AzSynapseSqlDatabase +``` + +This command deletes an Azure Synapse Analytics SQL database through pipeline. + +### Example 4 +```powershell +PS C:\> Remove-AzSynapseSqlDatabase -ResourceId /subscriptions/21686af7-58ec-4f4d-9c68-f431f4db4edd/resourceGroups/ContosoResourceGroup/providers/Microsoft.Synapse/workspaces/ContosoWorkspace/sqlDatabases/ContosoSqlDatabase +``` + +This command deletes an Azure Synapse Analytics SQL database with the specified resource ID. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```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 +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL Database input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase +Parameter Sets: DeleteByInputObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: DeleteByNameParameterSet, DeleteByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +This Cmdlet does not return an object by default. +If this switch is specified, it returns true if successful. + +```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 +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: DeleteByNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Resource identifier of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: DeleteByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: DeleteByNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceObject +workspace input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace +Parameter Sets: DeleteByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase + +### System.String + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md index 1e21881eec30..510c1e487d8e 100644 --- a/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md @@ -14,26 +14,26 @@ Deletes a Synapse Analytics SQL pool. ### DeleteByNameParameterSet (Default) ``` -Remove-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-PassThru] - [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Version ] + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DeleteByParentObjectParameterSet ``` -Remove-AzSynapseSqlPool -Name -WorkspaceObject [-PassThru] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzSynapseSqlPool -Name [-Version ] -WorkspaceObject [-PassThru] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DeleteByInputObjectParameterSet ``` -Remove-AzSynapseSqlPool -InputObject [-PassThru] [-AsJob] +Remove-AzSynapseSqlPool [-Version ] -InputObject [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DeleteByResourceIdParameterSet ``` -Remove-AzSynapseSqlPool -ResourceId [-PassThru] [-AsJob] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Remove-AzSynapseSqlPool [-Version ] -ResourceId [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -178,6 +178,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Version +Version of Synapse SQL pool. For example, 2 or 3. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkspaceName Name of Synapse workspace. diff --git a/src/Synapse/Synapse/help/Test-AzSynapseSqlDatabase.md b/src/Synapse/Synapse/help/Test-AzSynapseSqlDatabase.md new file mode 100644 index 000000000000..fc147f042993 --- /dev/null +++ b/src/Synapse/Synapse/help/Test-AzSynapseSqlDatabase.md @@ -0,0 +1,129 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/test-azsynapsesqldatabase +schema: 2.0.0 +--- + +# Test-AzSynapseSqlDatabase + +## SYNOPSIS +Checks for the existence of a Synapse Analytics SQL database. + +## SYNTAX + +### TestByNameParameterSet (Default) +``` +Test-AzSynapseSqlDatabase [-ResourceGroupName ] -WorkspaceName -Name + [-DefaultProfile ] [] +``` + +### TestByParentObjectParameterSet +``` +Test-AzSynapseSqlDatabase -Name -WorkspaceObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Test-AzSynapseSqlDatabase** cmdlet checks for the existence of a Synapse Analytics SQL database. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Test-AzSynapseSqlDatabase -WorkspaceName ContosoWorkspace -Name ContosoSqlDatabase +``` + +This command checks the existence of the specified SQL database. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: TestByNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: TestByNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceObject +workspace input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace +Parameter Sets: TestByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md index 376104eb514c..1eaeaa2d99d3 100644 --- a/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md @@ -14,13 +14,13 @@ Checks for the existence of a Synapse Analytics SQL pool. ### TestByNameParameterSet (Default) ``` -Test-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name +Test-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Version ] [-DefaultProfile ] [] ``` ### TestByParentObjectParameterSet ``` -Test-AzSynapseSqlPool -Name -WorkspaceObject +Test-AzSynapseSqlPool -Name [-Version ] -WorkspaceObject [-DefaultProfile ] [] ``` @@ -83,6 +83,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Version +Version of Synapse SQL pool. For example, 2 or 3. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkspaceName Name of Synapse workspace. diff --git a/src/Synapse/Synapse/help/Update-AzSynapseSqlDatabase.md b/src/Synapse/Synapse/help/Update-AzSynapseSqlDatabase.md new file mode 100644 index 000000000000..2d35e29d0c8c --- /dev/null +++ b/src/Synapse/Synapse/help/Update-AzSynapseSqlDatabase.md @@ -0,0 +1,267 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/update-azsynapsesqldatabase +schema: 2.0.0 +--- + +# Update-AzSynapseSqlDatabase + +## SYNOPSIS +Updates a Synapse Analytics SQL database. + +## SYNTAX + +### UpdateByNameParameterSet (Default) +``` +Update-AzSynapseSqlDatabase [-ResourceGroupName ] -WorkspaceName -Name + [-MaxSizeInBytes ] [-Tag ] [-PassThru] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### UpdateByParentObjectParameterSet +``` +Update-AzSynapseSqlDatabase -Name [-MaxSizeInBytes ] -WorkspaceObject + [-Tag ] [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UpdateByInputObjectParameterSet +``` +Update-AzSynapseSqlDatabase -InputObject [-Tag ] [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### UpdateByResourceIdParameterSet +``` +Update-AzSynapseSqlDatabase -ResourceId [-Tag ] [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Update-AzSynapseSqlDatabase** cmdlet updates an Azure Synapse Analytics SQL database. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Update-AzSynapseSqlDatabase -WorkspaceName ContosoWorkspace -Name ContosoSqlDatabase -Tag @{'key'='value'} +``` + +This command updates an Azure Synapse Analytics SQL database. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```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 +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL Database input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase +Parameter Sets: UpdateByInputObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -MaxSizeInBytes +Specifies the maximum size of the database in bytes. + +```yaml +Type: System.Int64 +Parameter Sets: UpdateByNameParameterSet, UpdateByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: UpdateByNameParameterSet, UpdateByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +This Cmdlet does not return an object by default. +If this switch is specified, it returns true if successful. + +```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 +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: UpdateByNameParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Resource identifier of Synapse SQL Database. + +```yaml +Type: System.String +Parameter Sets: UpdateByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A string,string dictionary of tags associated with the resource. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: UpdateByNameParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceObject +workspace input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace +Parameter Sets: UpdateByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlDatabase + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md index 45fc0810b66f..8b42d3327ad2 100644 --- a/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md @@ -14,76 +14,79 @@ Updates a Synapse Analytics SQL pool. ### UpdateByNameParameterSet (Default) ``` -Update-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Tag ] - [-PerformanceLevel ] [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Update-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Version ] + [-Tag ] [-PerformanceLevel ] [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PauseByNameParameterSet ``` -Update-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Suspend] - [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Update-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Version ] + [-Suspend] [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ResumeByNameParameterSet ``` -Update-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Resume] - [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Update-AzSynapseSqlPool [-ResourceGroupName ] -WorkspaceName -Name [-Version ] + [-Resume] [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### UpdateByParentObjectParameterSet ``` -Update-AzSynapseSqlPool -Name -WorkspaceObject [-Tag ] - [-PerformanceLevel ] [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Update-AzSynapseSqlPool -Name [-Version ] -WorkspaceObject + [-Tag ] [-PerformanceLevel ] [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PauseByParentObjectParameterSet ``` -Update-AzSynapseSqlPool -Name [-Suspend] -WorkspaceObject [-PassThru] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Update-AzSynapseSqlPool -Name [-Version ] [-Suspend] -WorkspaceObject + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResumeByParentObjectParameterSet ``` -Update-AzSynapseSqlPool -Name [-Resume] -WorkspaceObject [-PassThru] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Update-AzSynapseSqlPool -Name [-Version ] [-Resume] -WorkspaceObject + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PauseByInputObjectParameterSet ``` -Update-AzSynapseSqlPool [-Suspend] -InputObject [-PassThru] [-AsJob] +Update-AzSynapseSqlPool [-Version ] [-Suspend] -InputObject [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PauseByResourceIdParameterSet ``` -Update-AzSynapseSqlPool [-Suspend] -ResourceId [-PassThru] [-AsJob] +Update-AzSynapseSqlPool [-Version ] [-Suspend] -ResourceId [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResumeByInputObjectParameterSet ``` -Update-AzSynapseSqlPool [-Resume] -InputObject [-PassThru] [-AsJob] +Update-AzSynapseSqlPool [-Version ] [-Resume] -InputObject [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResumeByResourceIdParameterSet ``` -Update-AzSynapseSqlPool [-Resume] -ResourceId [-PassThru] [-AsJob] +Update-AzSynapseSqlPool [-Version ] [-Resume] -ResourceId [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### UpdateByInputObjectParameterSet ``` -Update-AzSynapseSqlPool -InputObject [-Tag ] [-PerformanceLevel ] - [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Update-AzSynapseSqlPool [-Version ] -InputObject [-Tag ] + [-PerformanceLevel ] [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### UpdateByResourceIdParameterSet ``` -Update-AzSynapseSqlPool -ResourceId [-Tag ] [-PerformanceLevel ] [-PassThru] - [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Update-AzSynapseSqlPool [-Version ] -ResourceId [-Tag ] [-PerformanceLevel ] + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -289,6 +292,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Version +Version of Synapse SQL pool. For example, 2 or 3. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkspaceName Name of Synapse workspace. diff --git a/src/lib/NetFxPreloadAssemblies/Newtonsoft.Json.12.0.3.dll b/src/lib/NetFxPreloadAssemblies/Newtonsoft.Json.12.0.3.dll new file mode 100644 index 000000000000..e4a63399d0d9 Binary files /dev/null and b/src/lib/NetFxPreloadAssemblies/Newtonsoft.Json.12.0.3.dll differ diff --git a/tools/CreateMappings_rules.json b/tools/CreateMappings_rules.json index c79c63631f87..2b53bedee29d 100644 --- a/tools/CreateMappings_rules.json +++ b/tools/CreateMappings_rules.json @@ -4,6 +4,8 @@ { "regex": "MachineLearning", "group": "Machine Learning", "alias": "Machine Learning" }, { "regex": "Ml", "group": "Machine Learning", "alias": "Machine Learning" }, + { "regex": "ImageBuilder", "alias": "Image Builder" }, + { "regex": "Snapshot", "group": "Virtual Machines", "alias": "VM Snapshots" }, { "regex": "Image", "group": "Virtual Machines", "alias": "VM Images" }, { "regex": "Vmss", "group": "Virtual Machines", "alias": "VM Scale Sets" }, @@ -112,9 +114,6 @@ { "regex": "Consumption", "group": "Billing", "alias": "Billing" }, { "regex": "Billing", "group": "Billing", "alias": "Billing" }, - { "regex": "ApplicationInsights", "alias": "Monitor" }, - { "regex": "Monitor", "alias": "Monitor" }, - { "regex": "Media", "alias": "Media Services" }, { "regex": "UsageAggregates", "alias": "Usage Aggregates" }, @@ -174,13 +173,16 @@ { "regex": "Sql", "alias": "SQL" }, { "regex": "Blockchain", "alias": "Blockchain Service" }, { "regex": "ImportExport", "alias": "Import/Export" }, - { "regex": "ImageBuilder", "alias": "Image Builder" }, { "regex": "Functions", "alias": "Functions" }, { "regex": "DesktopVirtualization", "alias": "DesktopVirtualization" }, { "regex": "AppConfiguration", "alias": "App Configuration" }, { "regex": "HanaOnAzure", "alias": "SAP HANA on Azure" }, { "regex": "CustomProviders", "alias": "Custom Resource Providers" }, - { "regex": "MonitoringSolutions", "alias": "Monitoring Solutions" }, + { "regex": "MonitorLogAnalytics", "alias": "Monitoring Solutions" }, + + { "regex": "ApplicationInsights", "alias": "Monitor" }, + { "regex": "Monitor", "alias": "Monitor" }, + { "regex": "StackEdge", "alias": "Stack Edge" }, { "regex": "ConnectedKubernetes", "alias": "Connected Kubernetes" }, { "regex": "KubernetesConfiguration", "alias": "Kubernetes Configuration" }, diff --git a/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv index 99c5cc82844d..278723a512b4 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv @@ -64,4 +64,5 @@ "Microsoft.Azure.PowerShell.Cmdlets.Storage.dll","Microsoft.Azure.Commands.Management.Storage.NewAzDataLakeGen2ItemAclObjectCommand","New-AzDataLakeGen2ItemAclObject","1","8100","New-AzDataLakeGen2ItemAclObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageAccountCommand","Get-AzStorageAccount","1","8410","Parameter IncludeGeoReplicationStats of cmdlet Get-AzStorageAccount does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Storage.dll","Microsoft.Azure.Commands.Management.Storage.SetAzDataLakeGen2ItemAclObjectCommand","Set-AzDataLakeGen2ItemAclObject","1","8100","Set-AzDataLakeGen2ItemAclObject Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Storage.dll","Microsoft.Azure.Commands.Management.Storage.NewAzStorageBlobQueryConfigCommand","New-AzStorageBlobQueryConfig","1","8100","New-AzStorageBlobQueryConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Storage.dll","Microsoft.Azure.Commands.Management.Storage.NewAzStorageBlobQueryConfigCommand","New-AzStorageBlobQueryConfig","1","8100","New-AzStorageBlobQueryConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.NewAzureStorageAccountObjectReplicationPolicyRuleCommand","New-AzStorageObjectReplicationPolicyRule","1","8100","New-AzStorageObjectReplicationPolicyRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file diff --git a/tools/StaticAnalysis/Properties/AssemblyInfo.cs b/tools/StaticAnalysis/Properties/AssemblyInfo.cs index ec32a114a2e4..eb6a6d39a93b 100644 --- a/tools/StaticAnalysis/Properties/AssemblyInfo.cs +++ b/tools/StaticAnalysis/Properties/AssemblyInfo.cs @@ -13,7 +13,6 @@ // ---------------------------------------------------------------------------------- using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following @@ -22,9 +21,9 @@ [assembly: AssemblyTitle("DependencyChecker")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] [assembly: AssemblyProduct("DependencyChecker")] -[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyCopyright("Copyright © Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -48,5 +47,3 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", Watch = true)] - diff --git a/tools/Tools.Common/Loggers/AnalysisLogger.cs b/tools/Tools.Common/Loggers/AnalysisLogger.cs index 35aadca63833..a2bdda7c257c 100644 --- a/tools/Tools.Common/Loggers/AnalysisLogger.cs +++ b/tools/Tools.Common/Loggers/AnalysisLogger.cs @@ -31,9 +31,6 @@ public class AnalysisLogger private readonly string _exceptionsDirectory; private static string _defaultLogName; private static Dictionary _logDictionary; - - private log4net.ILog Log4NetLogger { get; set; } - private static Dictionary LogDictionary { get { return _logDictionary ?? (_logDictionary = new Dictionary()); } @@ -77,12 +74,6 @@ public AnalysisLogger(string baseDirectory, string exceptionsDirectory) var assembly = Assembly.GetExecutingAssembly(); var assemblyType = assembly.GetType(); _defaultLogName = assembly.GetName().Name; -// TODO: Remove IfDef -#if NETSTANDARD - Log4NetLogger = log4net.LogManager.GetLogger(assemblyType); -#else - Log4NetLogger = log4net.LogManager.GetLogger(_defaultLogName); -#endif } /// @@ -235,7 +226,7 @@ public virtual void WriteWarning(string format, params object[] args) #region Info methods public void Info(string info) { - Log4NetLogger.Info(info); + Console.WriteLine(info); } public void Info(string info, IEnumerable infoCollection) @@ -268,19 +259,28 @@ public void Info(string info, string infoFormat, IEnumerable infoCollectio private void Error(string errorInfo) { - Log4NetLogger.Error(errorInfo); + ConsoleColor previousColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Red; + Console.WriteLine(errorInfo); + Console.ForegroundColor = previousColor; } public void DebugInfo(string debugInfo) { - Log4NetLogger.Debug(debugInfo); + ConsoleColor previousColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Gray; + Console.WriteLine(debugInfo); + Console.ForegroundColor = previousColor; } private void Warning(string warningInfo) { - Log4NetLogger.Warn(warningInfo); + ConsoleColor previousColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Yellow; + Console.WriteLine(warningInfo); + Console.ForegroundColor = previousColor; } #endregion } -} +} \ No newline at end of file diff --git a/tools/Tools.Common/Properties/AssemblyInfo.cs b/tools/Tools.Common/Properties/AssemblyInfo.cs index ccf4cd29de0d..dfd4e55f9c4b 100644 --- a/tools/Tools.Common/Properties/AssemblyInfo.cs +++ b/tools/Tools.Common/Properties/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following @@ -8,9 +7,9 @@ [assembly: AssemblyTitle("Tools.Common")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft Corporation")] [assembly: AssemblyProduct("Tools.Common")] -[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyCopyright("Copyright © Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/tools/Tools.Common/Tools.Common.Netcore.csproj b/tools/Tools.Common/Tools.Common.Netcore.csproj index 58602376203b..d5aecdc781b5 100644 --- a/tools/Tools.Common/Tools.Common.Netcore.csproj +++ b/tools/Tools.Common/Tools.Common.Netcore.csproj @@ -18,7 +18,6 @@ -